Implemented UI_BACK_BUTTON for kiosk users to navigate to the previou… #183
Workflow file for this run
This file contains hidden or 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
# When the workflow succeeds the package will be published to docker hub | |
name: Publish Docker Image | |
on: | |
push: | |
branches: | |
- 'master' | |
tags: | |
- '*' | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push | |
if: startsWith(github.ref, 'refs/tags/') | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: glenndehaan/unifi-voucher-site:${{ github.ref_name }} | |
build-args: | | |
GIT_TAG=${{ github.ref_name }} | |
- name: Build and push (latest) | |
if: github.ref == 'refs/heads/master' | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: glenndehaan/unifi-voucher-site:latest | |
build-args: | | |
GIT_TAG=master |