Skip to content

Commit

Permalink
Fixes typo in github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukasdotcom committed Jun 14, 2022
1 parent 2c5b731 commit 1cb84ad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-publish-beta.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Docker Build/Publish Release
name: Docker Build/Publish Beta

on:
push:
Expand Down Expand Up @@ -36,4 +36,4 @@ jobs:
- name: Run Buildx (push image)
if: success()
run: |
docker buildx build --platform ${{ steps.prepare.outputs.docker_platform }} --tag ${{ steps.prepare.outputs.docker_image }}:nightly --file Dockerfile --push .
docker buildx build --platform ${{ steps.prepare.outputs.docker_platform }} --tag ${{ steps.prepare.outputs.docker_image }}:nightly --file docker/Dockerfile --push .
4 changes: 2 additions & 2 deletions .github/workflows/build-publish-release.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Docker Build/Publish Release

on:
releases:
release:
types: [published]

jobs:
Expand Down Expand Up @@ -36,4 +36,4 @@ jobs:
- name: Run Buildx (push image)
if: success()
run: |
docker buildx build --platform ${{ steps.prepare.outputs.docker_platform }} --tag ${{ steps.prepare.outputs.docker_image }}:latest --tag ${{ steps.prepare.outputs.docker_image }}:${{github.event.release.tag_name}} --file Dockerfile --push .
docker buildx build --platform ${{ steps.prepare.outputs.docker_platform }} --tag ${{ steps.prepare.outputs.docker_image }}:latest --tag ${{ steps.prepare.outputs.docker_image }}:${{github.event.release.tag_name}} --file docker/Dockerfile --push .

0 comments on commit 1cb84ad

Please sign in to comment.