Skip to content

Commit

Permalink
fix: use push-o-matic token (#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
bo0tzz authored Dec 5, 2024
1 parent 8399c6c commit cabf198
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,19 @@ jobs:
set_tag:
runs-on: ubuntu-latest
steps:
- name: Generate a token
id: generate-token
uses: actions/create-github-app-token@v1
with:
app-id: ${{ secrets.PUSH_O_MATIC_APP_ID }}
private-key: ${{ secrets.PUSH_O_MATIC_APP_KEY }}

- name: Checkout code
uses: actions/checkout@v4
with:
ref: "main"
fetch-depth: 0
token: ${{secrets.PAT}}
token: ${{ steps.generate-token.outputs.token }}

- name: Create and push new tag
run: |
Expand Down

0 comments on commit cabf198

Please sign in to comment.