Skip to content

Commit 571f812

Browse files
committed
change
1 parent 0ab7371 commit 571f812

File tree

4 files changed

+2
-10
lines changed

4 files changed

+2
-10
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
builder: ${{ steps.buildx.outputs.name }}
4040
provenance: false
4141
push: true
42-
tags: ghcr.io/pythonitalia/pycon/arm-pretix:${{ inputs.version }}
42+
tags: ghcr.io/pythonitalia/pycon/base-pretix:${{ inputs.version }}
4343
cache-from: type=local,src=/tmp/.buildx-cache
4444
cache-to: type=local,dest=/tmp/.buildx-cache
4545
platforms: linux/arm64

.github/workflows/build-frontend.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,6 @@ jobs:
4545
4646
conference_code=$(aws ssm get-parameter --output text --query Parameter.Value --with-decryption --name /pythonit/${{ inputs.tf_environment }}/pycon-frontend/conference-code)
4747
echo "CONFERENCE_CODE=$conference_code" >> "$GITHUB_OUTPUT"
48-
49-
sentry_auth_token=$(aws ssm get-parameter --output text --query Parameter.Value --with-decryption --name /pythonit/${{ inputs.tf_environment }}/common/sentry-auth-token)
50-
echo "::add-mask::$sentry_auth_token"
51-
echo "SENTRY_AUTH_TOKEN=$sentry_auth_token" >> "$GITHUB_OUTPUT"
5248
- name: Build and push
5349
uses: docker/build-push-action@v6
5450
with:
@@ -68,5 +64,3 @@ jobs:
6864
CMS_HOSTNAME=${{ steps.vars.outputs.cms_hostname }}
6965
CONFERENCE_CODE=${{ steps.vars.outputs.conference_code }}
7066
GIT_HASH=${{ inputs.githash }}
71-
secrets: |
72-
"sentry_auth_token=${{ steps.vars.outputs.sentry_auth_token }}"

frontend/next.config.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ const {
1010
CMS_HOSTNAME,
1111
CMS_ADMIN_HOST = "admin.pycon.it",
1212
NEXT_PUBLIC_SITE_URL,
13-
SENTRY_AUTH_TOKEN,
1413
} = process.env;
1514

1615
const nextConfig = {
@@ -129,7 +128,6 @@ const nextConfig = {
129128
};
130129

131130
module.exports = withSentryConfig(nextConfig, {
132-
authToken: SENTRY_AUTH_TOKEN,
133131
org: "python-italia",
134132
project: "pycon-frontend",
135133
});

pretix/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghcr.io/pythonitalia/pycon/arm-pretix:v2024.10.0
1+
FROM ghcr.io/pythonitalia/pycon/base-pretix:v2024.10.0
22

33
COPY ./settings.py /pretix/src/production_settings.py
44

0 commit comments

Comments
 (0)