Skip to content

Commit

Permalink
Create deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rteixeirax authored Apr 19, 2021
1 parent 2d99da7 commit df83ad2
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Deploy

on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10

jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest

steps:
- name: Setting up enviroment variables
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV

# https://github.com/actions/checkout
- name: Checkout code
uses: actions/checkout@v2

# https://github.com/docker/build-push-action
- 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.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Build and push to DockerHub
id: docker_build
uses: docker/build-push-action@v2
with:
push: true
tags: |
${{ secrets.DOCKER_REPOSITORY }}:${{ env.RELEASE_VERSION }}
${{ secrets.DOCKER_REPOSITORY }}:latest
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}

0 comments on commit df83ad2

Please sign in to comment.