Skip to content

Commit

Permalink
change
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoacierno committed Jan 11, 2025
1 parent 0ab7371 commit 571f812
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-base-pretix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
builder: ${{ steps.buildx.outputs.name }}
provenance: false
push: true
tags: ghcr.io/pythonitalia/pycon/arm-pretix:${{ inputs.version }}
tags: ghcr.io/pythonitalia/pycon/base-pretix:${{ inputs.version }}
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache
platforms: linux/arm64
6 changes: 0 additions & 6 deletions .github/workflows/build-frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,6 @@ jobs:
conference_code=$(aws ssm get-parameter --output text --query Parameter.Value --with-decryption --name /pythonit/${{ inputs.tf_environment }}/pycon-frontend/conference-code)
echo "CONFERENCE_CODE=$conference_code" >> "$GITHUB_OUTPUT"
sentry_auth_token=$(aws ssm get-parameter --output text --query Parameter.Value --with-decryption --name /pythonit/${{ inputs.tf_environment }}/common/sentry-auth-token)
echo "::add-mask::$sentry_auth_token"
echo "SENTRY_AUTH_TOKEN=$sentry_auth_token" >> "$GITHUB_OUTPUT"
- name: Build and push
uses: docker/build-push-action@v6
with:
Expand All @@ -68,5 +64,3 @@ jobs:
CMS_HOSTNAME=${{ steps.vars.outputs.cms_hostname }}
CONFERENCE_CODE=${{ steps.vars.outputs.conference_code }}
GIT_HASH=${{ inputs.githash }}
secrets: |
"sentry_auth_token=${{ steps.vars.outputs.sentry_auth_token }}"
2 changes: 0 additions & 2 deletions frontend/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ const {
CMS_HOSTNAME,
CMS_ADMIN_HOST = "admin.pycon.it",
NEXT_PUBLIC_SITE_URL,
SENTRY_AUTH_TOKEN,
} = process.env;

const nextConfig = {
Expand Down Expand Up @@ -129,7 +128,6 @@ const nextConfig = {
};

module.exports = withSentryConfig(nextConfig, {
authToken: SENTRY_AUTH_TOKEN,
org: "python-italia",
project: "pycon-frontend",
});
2 changes: 1 addition & 1 deletion pretix/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/pythonitalia/pycon/arm-pretix:v2024.10.0
FROM ghcr.io/pythonitalia/pycon/base-pretix:v2024.10.0

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

Expand Down

0 comments on commit 571f812

Please sign in to comment.