Skip to content

Commit

Permalink
Merge branch 'nunocoracao:main' into Japanese-Patch
Browse files Browse the repository at this point in the history
  • Loading branch information
yuubinnkyoku authored Dec 23, 2024
2 parents 0be3c2a + 396692e commit 629f17f
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/create-config-zip.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Create ZIP
on:
release:
types: [published]
workflow_dispatch:

jobs:
zip:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: zip -r config-default.zip config/_default
- uses: actions/upload-artifact@v3
with:
name: config-default
path: config-default.zip
- name: Upload to release
uses: softprops/action-gh-release@v1
with:
files: config-default.zip
tag_name: ${{ github.event.release.tag_name }}

0 comments on commit 629f17f

Please sign in to comment.