Merge pull request #63 from usdot-jpo-ode/master #21
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
name: "DockerHub Build and Push" | |
on: | |
push: | |
branches: | |
- "develop" | |
- "master" | |
- "release/*" | |
jobs: | |
dockerhub-jpo-s3-deposit: | |
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/jpo-s3-deposit:${{ env.TAG }} |