Skip to content

Commit

Permalink
ci: HACK-1212: create static url for latest release
Browse files Browse the repository at this point in the history
  • Loading branch information
jkowalikCM committed Nov 6, 2024
1 parent 808caa0 commit 512b364
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Create Release with ZIP Asset

on:
release:
types: [created]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Create ZIP file
run: |
zip -r mod_clickmeeting.latest.zip . -x "*.git*"
- name: Upload Release Asset
uses: softprops/action-gh-release@v1
with:
files: mod_clickmeeting.latest.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 512b364

Please sign in to comment.