Skip to content

Commit

Permalink
Merge branch 'git-commit-push-action-6689079472-windows-full-remote' …
Browse files Browse the repository at this point in the history
…into windows
  • Loading branch information
GuillaumeFalourd authored and GuillaumeFalourd committed Oct 30, 2023
2 parents 4b0de8e + ef08dd4 commit 2393b6c
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 3 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/69-run-on-push-to-rc.yml
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 }}
2 changes: 1 addition & 1 deletion backup/checkout-workflow.txt
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
2 changes: 1 addition & 1 deletion backup/pull-request-workflow.txt
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
2 changes: 1 addition & 1 deletion windows_report_full_remote.txt
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

0 comments on commit 2393b6c

Please sign in to comment.