-
Notifications
You must be signed in to change notification settings - Fork 0
67 lines (62 loc) · 1.95 KB
/
deploy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: 3. deploy
on:
release:
types: [published]
jobs:
deploy_mac:
name: deploy mac
runs-on: ubuntu-latest
steps:
- name: download mac
id: download_mac
uses: dsaltares/fetch-gh-release-asset@master
with:
version: tags/${{ github.event.release.tag_name }}
file: coa-mac.zip
- name: publish mac
uses: josephbmanley/butler-publish-itchio-action@master
env:
BUTLER_CREDENTIALS: ${{ secrets.BUTLER_CREDENTIALS }}
CHANNEL: mac
ITCH_GAME: coa
ITCH_USER: forerunnergames
PACKAGE: coa-mac.zip
VERSION: ${{ steps.download_mac.outputs.version }}
deploy_windows:
name: deploy windows
runs-on: ubuntu-latest
steps:
- name: download windows
id: download_windows
uses: dsaltares/fetch-gh-release-asset@master
with:
version: tags/${{ github.event.release.tag_name }}
file: coa-windows.zip
- name: publish windows
uses: josephbmanley/butler-publish-itchio-action@master
env:
BUTLER_CREDENTIALS: ${{ secrets.BUTLER_CREDENTIALS }}
CHANNEL: windows
ITCH_GAME: coa
ITCH_USER: forerunnergames
PACKAGE: coa-windows.zip
VERSION: ${{ steps.download_windows.outputs.version }}
deploy_linux:
name: deploy linux
runs-on: ubuntu-latest
steps:
- name: download linux
id: download_linux
uses: dsaltares/fetch-gh-release-asset@master
with:
version: tags/${{ github.event.release.tag_name }}
file: coa-linux.zip
- name: publish linux
uses: josephbmanley/butler-publish-itchio-action@master
env:
BUTLER_CREDENTIALS: ${{ secrets.BUTLER_CREDENTIALS }}
CHANNEL: linux
ITCH_GAME: coa
ITCH_USER: forerunnergames
PACKAGE: coa-linux.zip
VERSION: ${{ steps.download_linux.outputs.version }}