2022-05-13 10:57:58 +00:00
|
|
|
name: "Upload zip-archive"
|
|
|
|
on:
|
|
|
|
release:
|
|
|
|
types: [published]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
zip-archive:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2024-06-19 04:01:07 +00:00
|
|
|
uses: actions/checkout@v4.1.7
|
2022-05-13 10:57:58 +00:00
|
|
|
with:
|
|
|
|
submodules: true
|
|
|
|
- name: Create zip including submodules
|
|
|
|
run: |
|
|
|
|
cd ..
|
|
|
|
zip ${{ github.event.repository.name }}/${{ github.event.repository.name }}-${{ github.ref_name }}.zip ${{ github.event.repository.name }} -r
|
|
|
|
- name: Upload zip to release
|
2024-07-09 13:26:47 +00:00
|
|
|
uses: softprops/action-gh-release@a74c6b72af54cfa997e81df42d94703d6313a2d0
|
2022-05-13 10:57:58 +00:00
|
|
|
with:
|
|
|
|
files: |
|
|
|
|
${{ github.event.repository.name }}-${{ github.ref_name }}.zip
|