Skip to content

Commit

Permalink
revert & fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ambrazasp committed Oct 10, 2024
1 parent 9db289f commit 4b1b5f7
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/publish-pmtiles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,6 @@ jobs:
timeout-minutes: 20
concurrency: publish-release
if: ${{ github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/') }}
outputs:
version: ${{ steps.version.outputs.version || '' }}
needs:
- generate-geopackage
- generate-pmtiles
Expand Down Expand Up @@ -158,7 +156,6 @@ jobs:
needs:
- generate-geopackage
- generate-pmtiles
- publish-release
permissions:
contents: read
packages: write
Expand All @@ -178,7 +175,7 @@ jobs:
docker-image: ghcr.io/govlt/national-boundaries-vector
docker-context: vector/docker/static
file: vector/docker/static/Dockerfile
environment: ${{ (startsWith(github.ref, 'refs/tags/') || needs.publish-release.outputs.version) && 'stable' || 'preview' }}
environment: ${{ (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/')) && 'stable' || 'preview' }}
no-cache: true
push: true
cache-from: ''
Expand Down

0 comments on commit 4b1b5f7

Please sign in to comment.