Skip to content

Update bootstrap and remove single page ajax #11

Update bootstrap and remove single page ajax

Update bootstrap and remove single page ajax #11

name: Build and push docker image
on:
push:
tags:
- '*'
jobs:
docker:
runs-on: ubuntu-latest
env:
COMMIT_SHA: ${GITHUB_SHA::7}
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v2
with:
push: true
tags: founntain/gudsafe:latest
build-args: REVISION=${{ github.sha }}
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}