Skip to content

Commit

Permalink
fix(ipvboss): fixing env variable
Browse files Browse the repository at this point in the history
  • Loading branch information
groenator committed May 11, 2024
1 parent 2585249 commit a9d82f7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ env:

jobs:
build-and-publish:

runs-on: ubuntu-latest
permissions:
contents: read
Expand Down Expand Up @@ -49,17 +48,18 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Set release tag as environment variable
id: set-tag
run: |
echo "LATEST_TAG=$(cat release)" >> $GITHUB_ENV
echo $LATEST_TAG
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@96383f45573cb7f253c731d3b3ab81c87ef81934 # v5.0.0
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

- name: Set release tag as environment variable
run: |
export LATEST_TAG=$(cat release)
echo "LATEST_TAG=$LATEST_TAG"
# Build and push Docker image for x86
- name: Build and push Docker image for x86
id: build-and-push-x86
Expand Down

0 comments on commit a9d82f7

Please sign in to comment.