Skip to content

Commit

Permalink
add: auto release github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Diwamoto committed Feb 22, 2024
1 parent 78b6ca6 commit fc78bbe
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Create Release

on:
push:
branches:
- master

jobs:
create_release:
runs-on: ubuntu-latest

steps:
- name: Generate GitHub Apps token
id: generate_token
uses: tibdex/github-app-token@v1
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.PRIVATE_KEY }}
- uses: google-github-actions/release-please-action@v3
with:
token: ${{ steps.generate_token.outputs.token }}
release-type: simple

0 comments on commit fc78bbe

Please sign in to comment.