Skip to content

Commit

Permalink
release action
Browse files Browse the repository at this point in the history
  • Loading branch information
vdelachaux committed Sep 24, 2024
1 parent 5906c6e commit d2bce0a
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Release
on:
release:
types: [published]
jobs:
publish:
name: Publish
runs-on: macos-latest
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
permissions:
contents: write # for asset upload
steps:
- name: ⬇️ Checkout
uses: actions/checkout@v4
- name: BuildAndPackage
uses: 4d/build4d-action@main
with:
actions: "build,pack,sign,archive"
sign-certificate: "Vincent de Lachaux (DYRKW64QA9)"
- name: Upload
run: |
gh release upload ${{github.event.release.tag_name}} build/tool4d-action-test.zip

0 comments on commit d2bce0a

Please sign in to comment.