-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'git-commit-push-action-6689079472-windows-full-remote' …
…into windows
- Loading branch information
Showing
4 changed files
with
38 additions
and
3 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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: 69 - Run on push to rc | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'rc/*.*.*' | ||
|
||
jobs: | ||
release-candidate-tag: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
tag: ${{ steps.tag.outputs.tag }} | ||
steps: | ||
- name: Dump GitHub context | ||
env: | ||
GITHUB_CONTEXT: ${{ toJSON(github) }} | ||
run: echo "$GITHUB_CONTEXT" | ||
- name: Extract branch tag if necessary | ||
id: tag | ||
run: | | ||
BRANCH=${{ github.ref }} | ||
echo $BRANCH | ||
TAG="${BRANCH//refs\/heads\/rc\//""}" | ||
echo $TAG | ||
echo "tag=$TAG" >> $GITHUB_OUTPUT | ||
release: | ||
needs: | ||
- release-candidate-tag | ||
runs-on: ubuntu-latest | ||
env: | ||
TAG: ${{ needs.release-candidate-tag.outputs.tag }} | ||
steps: | ||
- name: echo TAG | ||
run: echo ${{ env.TAG }} |
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 |
---|---|---|
@@ -1 +1 @@ | ||
Thu Oct 26 01:09:33 UTC 2023 | ||
Fri Oct 27 01:09:45 UTC 2023 |
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 |
---|---|---|
@@ -1 +1 @@ | ||
Wed Oct 25 06:22:22 UTC 2023 | ||
Thu Oct 26 06:22:03 UTC 2023 |
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 |
---|---|---|
@@ -1 +1 @@ | ||
Fri Oct 27 06:19:41 CUT 2023 | ||
Mon Oct 30 06:20:15 CUT 2023 |