Skip to content

Commit e8795ae

Browse files
committed
Merge branch 'main' into deploy-workflow-improvements
2 parents 4a1dabf + abb524f commit e8795ae

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/build-base-pretix.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,20 +18,24 @@ jobs:
1818
contents: read
1919
packages: write
2020
steps:
21+
- name: Log in to the Container registry
22+
uses: docker/login-action@v3
23+
with:
24+
registry: ghcr.io
25+
username: ${{ github.actor }}
26+
password: ${{ secrets.GITHUB_TOKEN }}
2127
- uses: actions/checkout@v4
2228
with:
2329
repository: pretix/pretix
2430
ref: ${{ inputs.version }}
25-
- name: Login to Amazon ECR
26-
uses: aws-actions/amazon-ecr-login@v2
2731
- name: Set up Docker Buildx
2832
id: buildx
2933
uses: docker/setup-buildx-action@v3
3034
- name: Build pretix base
3135
uses: docker/build-push-action@v6
3236
id: build-pretix-base
3337
with:
34-
file: ./Dockerfile
38+
context: .
3539
builder: ${{ steps.buildx.outputs.name }}
3640
provenance: false
3741
push: true

0 commit comments

Comments
 (0)