Compare commits

...

10 Commits

Author SHA1 Message Date
942ed1805e FIRST commit
All checks were successful
out_in_puts / create_issue_on_failure (push) Successful in 59s
Gitea Actions Demo / gitea_example (push) Successful in 4s
Ci Actions worker / checkout (push) Successful in 4s
Ci Actions worker / process (push) Successful in 3s
Ci Actions worker / check-secrets (push) Successful in 2s
Ci Actions worker / create-artifact (push) Successful in 13s
Ci Actions worker / report-os (push) Successful in 2s
Ci Actions worker / check-vars (push) Successful in 2s
Ci Actions worker / download-artifact (push) Successful in 8s
Ci Actions worker / show-report-urlo (push) Successful in 2s
2024-11-02 18:38:47 -04:00
903d6eed67 really fixed 2024-09-01 12:44:51 -04:00
8fb35b24a3 Fixed 2024-09-01 12:43:51 -04:00
3889fa9f42 ok 2024-09-01 12:42:04 -04:00
ccebb358a5 test other 2024-09-01 12:39:57 -04:00
ba6b2639a3 other test 2024-09-01 12:39:09 -04:00
ad11852cc6 Add echo 2024-09-01 12:25:27 -04:00
ce0bf41084 ADD head parse 2024-09-01 12:23:03 -04:00
5e43ae823a add new step 2024-09-01 12:00:12 -04:00
bb766c8b6b cheout v3 2024-09-01 11:56:49 -04:00
2 changed files with 6 additions and 6 deletions

View File

@ -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:

View File

@ -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}}"