Skip to content

Commit

Permalink
ci: add release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Pkcarreno committed Sep 10, 2024
1 parent 3aff977 commit a778227
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
on:
push:
branches:
- main

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

name: "release"

jobs:
prepare:
uses: ./.github/workflows/precheck.yml

release:
runs-on: ubuntu-latest
needs: [prepare]
permissions:
contents: write
pull-requests: write
steps:
- uses: googleapis/release-please-action@v4
id: release
with:
release-type: node
outputs:
release-created: ${{ steps.release.outputs.release_created }}

0 comments on commit a778227

Please sign in to comment.