Compare commits
10 Commits
104bac8a84
...
942ed1805e
| Author | SHA1 | Date | |
|---|---|---|---|
| 942ed1805e | |||
| 903d6eed67 | |||
| 8fb35b24a3 | |||
| 3889fa9f42 | |||
| ccebb358a5 | |||
| ba6b2639a3 | |||
| ad11852cc6 | |||
| ce0bf41084 | |||
| 5e43ae823a | |||
| bb766c8b6b |
3
.github/workflows/ci.yaml
vendored
3
.github/workflows/ci.yaml
vendored
@ -8,9 +8,6 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- name: set env variable
|
|
||||||
run: ${{ env.SHORT_SHA}} = "$(git rev-parse --short HEAD)" # for this to work need first checkout
|
|
||||||
|
|
||||||
process:
|
process:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
|||||||
7
.github/workflows/out_in.yaml
vendored
7
.github/workflows/out_in.yaml
vendored
@ -14,9 +14,12 @@ jobs:
|
|||||||
run: echo "The build stage is ${{ steps.set-debug-stage.outputs.BUILD_STAGE}}"
|
run: echo "The build stage is ${{ steps.set-debug-stage.outputs.BUILD_STAGE}}"
|
||||||
|
|
||||||
- name: checkout code
|
- name: checkout code
|
||||||
id: get-short-sha
|
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
run: echo "SHORT_SHA=$(git rev-parse --short)" >> GITHUB_OUTPUT
|
|
||||||
|
|
||||||
|
- name: set short sha
|
||||||
|
id: get-short-sha
|
||||||
|
run: echo "SHORT_SHA=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
|
||||||
|
- name: get short sha
|
||||||
|
run: echo "SHORT_SHA=$(git rev-parse --short HEAD)"
|
||||||
- name: check short sha
|
- name: check short sha
|
||||||
run: echo "The short sha is ${{ steps.get-short-sha.outputs.SHORT_SHA}}"
|
run: echo "The short sha is ${{ steps.get-short-sha.outputs.SHORT_SHA}}"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user