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:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
- name: 'Checkout'
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
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
|
||||
run: env
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue