-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #51 from rsksmart/fix/release-container-action-issue
Attempt to fix the tag released from the container action
- Loading branch information
Showing
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -93,7 +93,7 @@ jobs: | |
|
||
- name: Test RIT Action | ||
id: test-rit-action | ||
uses: ./container-action/ | ||
uses: ./ | ||
with: | ||
rskj-branch: master | ||
powpeg-node-branch: master | ||
|
@@ -110,18 +110,17 @@ jobs: | |
runs-on: ubuntu-latest | ||
timeout-minutes: 60 | ||
if: github.ref == 'refs/heads/main' | ||
permissions: | ||
contents: write | ||
packages: write | ||
|
||
steps: | ||
- name: Checkout | ||
id: checkout | ||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | ||
|
||
- name: Create GitHub Release | ||
uses: actions/create-release@0cb9c9b65d5d1901c1f53e5e66eaf4afd303e70e # v1.1.4 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: rootstock-integration-tests@v1 | ||
release_name: Release rootstock-integration-tests@v1 | ||
draft: false | ||
prerelease: false | ||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Publish new version | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "RIT Release Automation" | ||
git tag -fa v1 -m "Updating rootstock-integration-tests container action v1" | ||
git push origin v1 --force |
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