Skip to content

Commit

Permalink
scratch ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
gkostin1966 committed Apr 24, 2024
1 parent 7705b14 commit ec4dd1c
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/branch-scratch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,19 @@ on:

jobs:
get-short-tag:
id: get-short-tag
runs-on: ubuntu-latest
steps:
- name: save short tag to environment
run: echo "short_tag=$(echo ${{ github.event.inputs.tag }} | head -c 8 )" >> $GITHUB_ENV
- name: echo env var
run: echo "${{ github.env.short_tag }}"
arm64:
runs-on: arm64
steps:
- name: echo env var
run: echo "${{ github.env.short_tag }}"
amd64:
runs-on: amd64
steps:
- name: echo env var
run: echo "${{ github.env.short_tag }}"

0 comments on commit ec4dd1c

Please sign in to comment.