forked from PathOfBuildingCommunity/PathOfBuilding
-
Notifications
You must be signed in to change notification settings - Fork 0
22 lines (21 loc) · 727 Bytes
/
Copy pathinstaller.yml
File metadata and controls
22 lines (21 loc) · 727 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 --game-version 1'
- name: Upload artifact
run: >
gh release upload ${{ github.event.release.tag_name }} (Get-ChildItem Dist -File).FullName --clobber -R ${{ github.repository }};