We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c00ead5 commit fc3b948Copy full SHA for fc3b948
.github/workflows/build-base-pretix.yml
@@ -1,6 +1,6 @@
1
name: Build base pretix image
2
3
-concurrency: v2024.11.0
+concurrency: ${{ inputs.version }}
4
5
on:
6
workflow_dispatch:
@@ -27,7 +27,7 @@ jobs:
27
- uses: actions/checkout@v4
28
with:
29
repository: pretix/pretix
30
- ref: v2024.11.0
+ ref: ${{ inputs.version }}
31
- name: Set up Docker Buildx
32
id: buildx
33
uses: docker/setup-buildx-action@v3
@@ -39,7 +39,7 @@ jobs:
39
builder: ${{ steps.buildx.outputs.name }}
40
provenance: false
41
push: true
42
- tags: ghcr.io/pythonitalia/pycon/arm-pretix:v2024.11.0
+ tags: ghcr.io/pythonitalia/pycon/arm-pretix:${{ inputs.version }}
43
cache-from: type=local,src=/tmp/.buildx-cache
44
cache-to: type=local,dest=/tmp/.buildx-cache
45
platforms: linux/arm64
0 commit comments