Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
shinosaki committed Feb 22, 2024
1 parent 37e97e0 commit 252d241
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ jobs:
platforms: ${{ matrix.arch }}

- run: |
TAG=${GITHUB_REF_NAME}
TAG=${TAG#*-}; TAG=${TAG%-*}
TAG=$(echo ${GITHUB_REF_NAME} | awk -F'-' '{print $2}')
echo "DEB_SUITE=${TAG}" >> $GITHUB_ENV
- name: Build debootstrap docker image
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ jobs:
platforms: ${{ matrix.arch }}

- run: |
TAG=${GITHUB_REF_NAME}
TAG=${TAG#*-}; TAG=${TAG%-*}
TAG=$(echo ${GITHUB_REF_NAME} | awk -F'-' '{print $2}')
echo "DEB_SUITE=${TAG}" >> $GITHUB_ENV
- name: Build debootstrap docker image
Expand Down

0 comments on commit 252d241

Please sign in to comment.