v1.0.18 #689
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Download the latest MSIX packages from Microsoft Store and upload them to GitHub release. | |
# See: https://github.com/JasonWei512/Upload-Microsoft-Store-MSIX-Package-to-GitHub-Release | |
name: Upload store MSIX to release | |
permissions: | |
contents: write | |
on: | |
release: | |
types: [released] # Run the action when a GitHub release is published | |
workflow_dispatch: # Manually run the action | |
jobs: | |
upload-store-msix-to-release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Upload store MSIX to release | |
uses: JasonWei512/Upload-Microsoft-Store-MSIX-Package-to-GitHub-Release@v1 | |
with: | |
store-id: 9NF7JTB3B17P | |
token: ${{ secrets.GITHUB_TOKEN }} | |
asset-name-pattern: EnergyStarX_{version}_{arch} |