Skip to content

Commit

Permalink
Using artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
Arisamiga authored Oct 23, 2023
1 parent 9f87526 commit f2d6ea9
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,22 @@ jobs:
mkdir /opt/code/Release/Aminet-Release/
cp /opt/code/Release/Mnemosyne-1.0.0.lha /opt/code/Release/Aminet-Release/Mnemosyne.lha
cp /opt/code/aminet.readme /opt/code/Release/Aminet-Release/Mnemosyne.readme
- name: 📤 Copy LHA archive to host machine
run: docker cp container_name:/opt/code/Release/Mnemosyne-1.0.0.lha .
- name: 📤 Upload LHA archive as artifact
uses: actions/upload-artifact@v2
with:
name: Mnemosyne-1.0.0.lha
path: /opt/code/Release/Aminet-Release/Mnemosyne-1.0.0.lha

- name: 🎲 Download LHA archive artifact
uses: actions/download-artifact@v2
with:
name: Mnemosyne-1.0.0.lha
path: /tmp/Mnemosyne-1.0.0.lha
- name: 🎲 Uploading to Itch.io
uses: manleydev/[email protected]
env:
BUTLER_CREDENTIALS: ${{ secrets.BUTLER_API_KEY }}
CHANNEL: LHA
ITCH_GAME: Mnemosyne
ITCH_USER: arisamiga
PACKAGE: Mnemosyne-1.0.0.lha
PACKAGE: /tmp/Mnemosyne-1.0.0.lha

0 comments on commit f2d6ea9

Please sign in to comment.