Skip to content

Commit

Permalink
Update debian.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
shinosaki authored Feb 22, 2024
1 parent 9c77c73 commit d5000ae
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
workflow_dispatch:
push:
tags:
- debian-*
- debian-*-*
# env:
# DEB_REPO: http://mirrors.edge.kernel.org/debian
jobs:
Expand All @@ -19,7 +19,10 @@ jobs:
with:
platforms: ${{ matrix.arch }}

- run: echo "DEB_SUITE=${GITHUB_REF_NAME#debian-}" >> $GITHUB_ENV
- run: |
TAG=${GITHUB_REF_NAME}
TAG=${TAG#*-}; TAG=${TAG%-*}
echo "DEB_SUITE=${TAG}" >> $GITHUB_ENV
- name: Build debootstrap docker image
run: docker build -t debootstrap ./debian
Expand Down

0 comments on commit d5000ae

Please sign in to comment.