All checks were successful
Commit Hash / BuildAndPublish (push) Successful in 1s
14 lines
233 B
YAML
14 lines
233 B
YAML
name: Commit Hash
|
|
run-name: Print commit hash
|
|
on: [ push ]
|
|
|
|
jobs:
|
|
BuildAndPublish:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Print commit hash
|
|
run: |
|
|
hash=${{env.GITHUB_SHA}}
|
|
echo ${hash::10}
|
|
|