test: workflow testing
This commit is contained in:
parent
1edfd5e748
commit
e6b48dff7e
1 changed files with 10 additions and 1 deletions
11
.github/workflows/action-test.yml
vendored
11
.github/workflows/action-test.yml
vendored
|
@ -13,10 +13,19 @@ jobs:
|
||||||
docker:
|
docker:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: 'Checkout'
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
ref: ${{ inputs.tag }}
|
ref: ${{ inputs.tag }}
|
||||||
|
|
||||||
|
- name: 'get sha'
|
||||||
|
run: |
|
||||||
|
git rev-parse --short ${{ inputs.tag }}
|
||||||
|
git --version
|
||||||
|
git rev-parse --short
|
||||||
|
MYSHA=$(git rev-parse ${{ inputs.tag }})
|
||||||
|
|
||||||
- name: env
|
- name: env
|
||||||
run: env
|
run: env
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue