Update dependencies #8
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: Build & Publish Docker Image | |
# Controls when the action will run. | |
on: | |
# Triggers the workflow on push events but only for the main branch | |
push: | |
branches: [main] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# Set an environment variable (that can be overriden) for the Docker Repo | |
env: | |
DOCKER_REPO: h4n00/admeta | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
build: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- name: Check out the repo | |
uses: actions/[email protected] | |
# Login to Docker hub using the credentials stored in the repository secrets | |
- name: Log in to Docker Hub | |
uses: docker/[email protected] | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_TOKEN }} | |
# Get the commit short hash, to use as the rev | |
- name: Calculate rev hash | |
id: rev | |
run: echo "value=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT | |
# Build and push 2 images, One with the version tag and the other with latest tag | |
- name: Build and push Docker images | |
uses: docker/[email protected] | |
with: | |
context: . | |
push: true | |
tags: ${{ env.DOCKER_REPO }}:v${{ steps.rev.outputs.value }}, ${{ env.DOCKER_REPO }}:latest |