-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: fix docker workflow variable computation
- Loading branch information
1 parent
45ffc3c
commit 7447e61
Showing
1 changed file
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -125,6 +125,14 @@ jobs: | |
packages: python3 python3-venv python-is-python3 python3-pip nodejs npm curl zip unzip | ||
python-libs: kestra | ||
steps: | ||
# Vars | ||
- name: Set image name | ||
id: vars | ||
run: | | ||
TAG=${GITHUB_REF#refs/*/} | ||
echo "tag=${TAG}" >> $GITHUB_OUTPUT | ||
echo "plugins=${{ matrix.image.plugins }}" >> $GITHUB_OUTPUT | ||
# Download release | ||
- name: Download release | ||
uses: robinraju/[email protected] | ||
|
@@ -137,14 +145,6 @@ jobs: | |
run: | | ||
cp build/executable/* docker/app/kestra && chmod +x docker/app/kestra | ||
# Vars | ||
- name: Set image name | ||
id: vars | ||
run: | | ||
TAG=${GITHUB_REF#refs/*/} | ||
echo "tag=${TAG}" >> $GITHUB_OUTPUT | ||
echo "plugins=${{ matrix.image.plugins }}" >> $GITHUB_OUTPUT | ||
# Docker setup | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
|