Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
taylordowns2000 committed Nov 8, 2023
1 parent 2a188bc commit 0969d11
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/dockerize.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,13 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Get tag
id: tag
- name: Branch name
id: branch_name
run: |
echo ::set-output name=SOURCE_TAG::${${GITHUB_REF#refs/tags/}:1}
SOURCE_TAG=${GITHUB_REF#refs/tags/}
echo Source Tag: $SOURCE_TAG
DOCKER_VERSION_TAG=${SOURCE_TAG#@}
echo "DOCKER_VERSION_TAG=$DOCKER_VERSION_TAG" >> $GITHUB_ENV
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
Expand All @@ -32,4 +35,4 @@ jobs:
target: ws-worker
tags: |
openfn/ws-worker:latest
${{ steps.tag.outputs.SOURCE_TAG }}
${DOCKER_VERSION_TAG}

0 comments on commit 0969d11

Please sign in to comment.