Skip to content

Commit

Permalink
Remove broken deployment cleanup step. (#45)
Browse files Browse the repository at this point in the history
The cleanup step in the GitHub Action deployment should remove all
coa*.zip zipped executables from the GitHub release automatically so
they will only be available on Itch.io. The plugin is not working
because it says it can't find any assets to remove, so remove it for now
and as a workaround manually remove the assets from the GitHub release
using the web interface.
  • Loading branch information
knightofiam authored Jun 9, 2022
1 parent 09166df commit 9545692
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,3 @@ jobs:
PACKAGE: coa-linux.zip
VERSION: ${{ steps.download_linux.outputs.version }}

cleanup:
name: cleanup
needs: [deploy_mac, deploy_windows, deploy_linux]
runs-on: ubuntu-latest
steps:
- name: delete github executables
uses: mknejp/delete-release-assets@v1
with:
token: ${{ secrets.GH_ACTIONS_TOKEN }}
tag: ${{ github.event.release.tag_name }}
assets: 'coa-*.zip'

0 comments on commit 9545692

Please sign in to comment.