-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 2 * work on on push tags * switch to PUSH_TOKEN to trigger workflow 2
- Loading branch information
Showing
1 changed file
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,6 @@ name: 1 version | |
concurrency: version | ||
|
||
on: | ||
workflow_call: | ||
pull_request: | ||
branches: | ||
- main | ||
|
@@ -21,14 +20,16 @@ jobs: | |
|
||
- uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.sha }} | ||
fetch-depth: '0' | ||
|
||
# this action is not triggering on push tags... | ||
# a push using the GITHUB_TOKEN can't trigger workflows. | ||
- name: Bump version and push tag | ||
id: tag | ||
uses: anothrNick/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets.PUSH_TOKEN }} | ||
WITH_V: true | ||
|
||
- name: release notes | ||
|