Skip to content

Commit

Permalink
added dockerhub action for release
Browse files Browse the repository at this point in the history
  • Loading branch information
shimwell committed Oct 19, 2020
1 parent 4068bb8 commit 7a6b5fc
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/dockerhub-publish-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: dockerhub-publish-release

on:
push:
tags: 'v*.*.*'

jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set env
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
-
name: Set up QEMU
uses: docker/setup-qemu-action@v1
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
push: true
tags: openmc/openmc:${{ env.RELEASE_VERSION }}
-
name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}

0 comments on commit 7a6b5fc

Please sign in to comment.