Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…Manager into web
  • Loading branch information
Manager committed Aug 31, 2023
2 parents 4bf82e2 + 07d1733 commit 92b68c1
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/publish-web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
# the Container registry domain, and a name for the Docker image that this workflow builds.
env:
REGISTRY: ghcr.io
IMAGE_NAME: Web-Wattrex-Experiments-Manager
IMAGE_NAME: web-wattrex-experiments-manager

# There is a single job in this workflow. It's configured to run on the latest available version of Ubuntu.
jobs:
Expand All @@ -26,6 +26,11 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up QEMU
uses: docker/setup-qemu-action@v2

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
# Uses the `docker/login-action` action to log in to the Container registry
# registry using the account and password that will publish the packages.
# Once published, the packages are scoped to the account defined here.
Expand Down Expand Up @@ -67,5 +72,8 @@ jobs:
context: .
file: Dockerfile.web_server
push: true
tags: wattrex-experiments-manager #${{ steps.meta.outputs.tags }}
# cache-from: type=gha
# cache-to: type=gha,mode=max
# tags: ${{ env.REGISTRY }}/${{github.repository}}/${{ env.IMAGE_NAME }}:web
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:web
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit 92b68c1

Please sign in to comment.