-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace github commit/push actions with manual steps (#551)
Signed-off-by: Danil-Grigorev <[email protected]>
- Loading branch information
1 parent
3ec6162
commit 70518b0
Showing
2 changed files
with
15 additions
and
16 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
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 |
---|---|---|
|
@@ -23,10 +23,10 @@ jobs: | |
run: | | ||
git tag ${{ env.RELEASE_TAG }} | ||
- name: Push changes | ||
uses: ad-m/github-push-action@master | ||
with: | ||
tags: true | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
git config --local user.email "github-actions[bot]@users.noreply.github.com" | ||
git config --local user.name "github-actions[bot]" | ||
git push --tags | ||
build-push-services: | ||
name: Build, sign and provenance | ||
|
@@ -155,8 +155,9 @@ jobs: | |
- uses: actions/[email protected] | ||
with: | ||
fetch-depth: 0 | ||
- uses: dev-drprasad/[email protected] | ||
with: | ||
tag_name: ${{ env.RELEASE_TAG }} | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
delete_release: false | ||
- name: Delete nigtly tag and push | ||
run: | | ||
git config --local user.email "github-actions[bot]@users.noreply.github.com" | ||
git config --local user.name "github-actions[bot]" | ||
git tag -d ${{ env.RELEASE_TAG }} | ||
git push origin --delete ${{ env.RELEASE_TAG }} |