Skip to content

Commit

Permalink
Merge pull request #51 from usdot-jpo-ode/replace/tags
Browse files Browse the repository at this point in the history
Replace/tags
  • Loading branch information
dan-du-car committed Jun 12, 2024
2 parents 681cf4a + 0693521 commit 9caab75
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/dockerhub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,29 @@ on:
- "develop"
- "master"
- "release/*"

jobs:
dockerhub-asn1_codec:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Replcae Docker tag
id: set_tag
run: echo "TAG=$(echo ${GITHUB_REF##*/} | sed 's/\//-/g')" >> $GITHUB_ENV

- name: Build
uses: docker/build-push-action@v3
with:
push: true
tags: usdotjpoode/asn1_codec:${{ github.ref_name }}
tags: usdotjpoode/asn1_codec:${{ env.TAG }}

0 comments on commit 9caab75

Please sign in to comment.