mirror of
https://github.com/cinnyapp/cinny-desktop.git
synced 2024-12-28 18:36:29 +00:00
ab9c3f6e88
Bumps [softprops/action-gh-release](https://github.com/softprops/action-gh-release) from 2.0.6 to 2.0.8.
- [Release notes](https://github.com/softprops/action-gh-release/releases)
- [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md)
- [Commits](a74c6b72af...c062e08bd5
)
---
updated-dependencies:
- dependency-name: softprops/action-gh-release
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
22 lines
693 B
YAML
22 lines
693 B
YAML
name: "Upload zip-archive"
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
zip-archive:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4.1.7
|
|
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
|
|
uses: softprops/action-gh-release@c062e08bd532815e2082a85e87e3ef29c3e6d191
|
|
with:
|
|
files: |
|
|
${{ github.event.repository.name }}-${{ github.ref_name }}.zip |