Skip to content

Commit

Permalink
enable public source maps
Browse files Browse the repository at this point in the history
  • Loading branch information
Esanim committed Nov 21, 2023
1 parent 746ae38 commit cc65024
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/publish-tag-images.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,23 @@
name: Publish Docker tag images

on:
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
- 'v[0-9].[0-9].[0-9]-testnet'

branches:
- 'enable-public-source-maps'

env:
DOCKER_REGISTRY: europe-docker.pkg.dev
DOCKER_IMAGE_NAME: lks-lz-artifacts/docker-explorer-execution/frontend

jobs:
build-docker:
permissions:
contents: "read"
id-token: "write"
contents: 'read'
id-token: 'write'
runs-on: ubuntu-latest
steps:
- name: Checkout ${{ inputs.sha }}
Expand All @@ -27,9 +30,9 @@ jobs:
id: gcpauth
uses: google-github-actions/auth@v1
with:
create_credentials_file: "true"
workload_identity_provider: "projects/311968610280/locations/global/workloadIdentityPools/github/providers/github"
service_account: "[email protected]"
create_credentials_file: 'true'
workload_identity_provider: 'projects/311968610280/locations/global/workloadIdentityPools/github/providers/github'
service_account: '[email protected]'

- name: login
run: |-
Expand Down
2 changes: 1 addition & 1 deletion next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const moduleExports = {
redirects,
headers,
output: 'standalone',
productionBrowserSourceMaps: process.env.GENERATE_SOURCEMAPS === 'true',
productionBrowserSourceMaps: true
};

module.exports = withRoutes(moduleExports);

0 comments on commit cc65024

Please sign in to comment.