blowfish
This commit is contained in:
parent
bfbe0de3c6
commit
30c2170ae7
1369 changed files with 92622 additions and 16 deletions
21
themes/blowfish/.github/workflows/create-config-zip.yml
vendored
Normal file
21
themes/blowfish/.github/workflows/create-config-zip.yml
vendored
Normal file
|
@ -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 }}
|
Loading…
Add table
Add a link
Reference in a new issue