Skip to content

Commit

Permalink
ci: add template build (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
ericoporto authored Aug 15, 2024
1 parent f6deb48 commit f0dc41d
Showing 1 changed file with 32 additions and 2 deletions.
34 changes: 32 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

- name: gets ags-toolbox
run: |
curl -Lo atbx.exe https://github.com/ericoporto/agstoolbox/releases/download/0.5.0/atbx.exe
curl -Lo atbx.exe https://github.com/ericoporto/agstoolbox/releases/download/0.5.2/atbx.exe
echo "${{github.workspace}}" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- name: Install AGS
Expand Down Expand Up @@ -49,4 +49,34 @@ jobs:
Empty Game/Compiled/*/*
Sierra-style/Compiled/*/*
Tumbleweed/Compiled/*/*
Verb Coin/Compiled/*/*
Verb Coin/Compiled/*/*
- name: Create Templat Build dir
run: mkdir build

- name: Package BASS as Template
run: |
atbx export template ./BASS "BASS.agt" ./build
- name: Package Sierra-style as Template
run: |
atbx export template ./Sierra-style "Sierra-style.agt" ./build
- name: Package Tumbleweed as Template
run: |
atbx export template ./Tumbleweed "Tumbleweed.agt" ./build
- name: Package Verb Coin as Template
run: |
atbx export template "./Verb Coin" "Verb Coin.agt" ./build
- name: Package Empty Game as Template
run: |
atbx export template "./Empty Game" "Empty Game.agt" ./build
- name: Upload Artifacts of Templates
uses: actions/upload-artifact@v4
with:
name: templates
path: |
build/*.agt

0 comments on commit f0dc41d

Please sign in to comment.