Skip to content

Commit

Permalink
feat(ci): Add basic GitHub actions configuration for release
Browse files Browse the repository at this point in the history
  • Loading branch information
thessem committed Aug 21, 2024
1 parent 1455806 commit 08f10ff
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Release Please

on:
push:
branches:
- github-actions/main

permissions:
contents: write
pull-requests: write

jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v4
with:
release-type: go
package-name: zap-prettyconsole
token: ${{ secrets.RELEASE_PLEASE_GITHUB_TOKEN }}
target-branch: ${{ github.ref_name }}

0 comments on commit 08f10ff

Please sign in to comment.