Skip to content

Commit

Permalink
use default HEAD
Browse files Browse the repository at this point in the history
  • Loading branch information
SciLor committed Aug 25, 2024
1 parent e7e0327 commit 12a2a40
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/publish_docker_matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
description: "Commit hash from the teddycloud_web build job"
type: string
required: false
default: "HEAD"

push:
branches:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/publish_docker_matrix_alpine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
description: "Commit hash from the teddycloud_web build job"
type: string
required: false
default: "HEAD"

# permissions are needed if pushing to ghcr.io
permissions:
Expand Down Expand Up @@ -36,7 +37,7 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: recursive
ref: ${{ inputs.tcw_commit_hash || 'HEAD' }}
ref: ${{ inputs.tcw_commit_hash }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/publish_docker_matrix_debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
description: "Commit hash from the teddycloud_web build job"
type: string
required: false
default: "HEAD"

# permissions are needed if pushing to ghcr.io
permissions:
Expand Down Expand Up @@ -35,7 +36,7 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: recursive
ref: ${{ inputs.tcw_commit_hash || 'HEAD' }}
ref: ${{ inputs.tcw_commit_hash }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/publish_docker_matrix_ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
description: "Commit hash from the teddycloud_web build job"
type: string
required: false
default: "HEAD"

# permissions are needed if pushing to ghcr.io
permissions:
Expand All @@ -34,7 +35,7 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: recursive
ref: ${{ inputs.tcw_commit_hash || 'HEAD' }}
ref: ${{ inputs.tcw_commit_hash }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
Expand Down

0 comments on commit 12a2a40

Please sign in to comment.