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
|
2023-01-14 12:26:09 +00:00
|
|
|
uses: actions/checkout@v3.3.0
|
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
|
2022-12-06 08:58:38 +00:00
|
|
|
uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844
|
2022-05-13 10:57:58 +00:00
|
|
|
with:
|
|
|
|
files: |
|
|
|
|
${{ github.event.repository.name }}-${{ github.ref_name }}.zip
|