Script updates (#1768) #193
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
# Changes to workflow name require changes to badge URL in README.md | |
name: Docker image builds | |
on: | |
push: | |
branches: | |
- main | |
- stable | |
- edge | |
- dev | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
# Use native docker command within docker-compose | |
COMPOSE_DOCKER_CLI_BUILD: 1 | |
# Use buildkit to speed up docker command | |
DOCKER_BUILDKIT: 1 | |
steps: | |
- name: Extract branch name | |
shell: bash | |
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})" | |
id: extract_branch | |
- name: Checkout | |
uses: actions/checkout@v2.3.4 | |
with: | |
ref: ${{ steps.extranct_branch.outputs.branch }} | |
- name: Login to Docker Hub | |
uses: azure/docker-login@v1 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_TOKEN }} | |
- name: Build full project via docker-compose | |
run: docker compose build --parallel --build-arg GIT_HASH=${GITHUB_SHA:0:6} | |
- name: Push images to Docker Hub | |
run: docker compose push --ignore-push-failures |