Release 2.46.0 #69
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
name: Create new installer | |
on: | |
release: | |
types: [published] | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
release: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
repository: 'PathOfBuildingCommunity/PathOfBuilding-Installer' | |
ref: 'master' | |
ssh-key: '${{ secrets.POB_INSTALLER_KEY }}' | |
- name: Create installer | |
run: 'python3 make_release.py' | |
- name: Upload artifact | |
run: > | |
gh release upload ${{ github.event.release.tag_name }} (Get-ChildItem Dist -File).FullName --clobber -R ${{ github.repository }}; | |