v1.2.8 - Account for Seiyuu on AniDB with no Character Attached #26
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: Upload Archived Release Assets | |
on: | |
release: | |
types: [published] | |
permissions: | |
contents: write | |
jobs: | |
upload_archived_asset: | |
name: Upload Archived Assets | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Create ShokoRelay.bundle | |
run: | | |
cd .. | |
tar -zcvf ShokoRelay.bundle.tar.gz ShokoRelay.bundle/Contents ShokoRelay.bundle/README.md | |
zip -r ShokoRelay.bundle.zip ShokoRelay.bundle/Contents ShokoRelay.bundle/README.md | |
cd ShokoRelay.bundle | |
gh release upload ${{ github.event.release.tag_name }} ../ShokoRelay.bundle.tar.gz | |
gh release upload ${{ github.event.release.tag_name }} ../ShokoRelay.bundle.zip | |
env: | |
GITHUB_TOKEN: ${{ github.TOKEN }} |