Skip to content

Commit

Permalink
[docs] update README Usage (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
pwtyler authored May 1, 2024
1 parent a48a0e9 commit 49b8eeb
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/tag-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,15 @@ on:
push:
branches:
- main

permissions:
contents: write

jobs:
tag-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Tag & Release
uses: ./
with:
Expand Down
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,18 @@ A GitHub token with `repo` scope. This is used to create the tag and release.
name: Autotag and Release
on:
push:
branches:
branches:
- main

permissions:
contents: write

jobs:
tag-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pantheon-systems/action-autotag@v0.x
- uses: actions/checkout@v4
- uses: pantheon-systems/action-autotag@v0
with:
gh-token: ${{ secrets.GITHUB_TOKEN }}
gh-token: ${{ github.token }}
```

0 comments on commit 49b8eeb

Please sign in to comment.