build(gha): Add Craft releases as a GitHub action (#538)
This commit is contained in:
14
.github/workflows/release.yml
vendored
Normal file
14
.github/workflows/release.yml
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
on:
|
||||
repository_dispatch:
|
||||
types: [release]
|
||||
jobs:
|
||||
release:
|
||||
runs-on: ubuntu-latest
|
||||
name: "Release a new version"
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: getsentry/craft-action
|
||||
with:
|
||||
action: prepare
|
||||
version: ${{ github.event.client_payload.version }}
|
||||
dry_run: ${{ github.event.client_payload.dry_run }}
|
Reference in New Issue
Block a user