Skip to content

Commit

Permalink
revert: remove builder workflow to automate deployments on ghcr.io
Browse files Browse the repository at this point in the history
Signed-off-by: Vinayak Kulkarni <19776877+vinayakkulkarni@users.noreply.github.com>
  • Loading branch information
vinayakkulkarni committed Sep 30, 2022
1 parent 430bd7c commit 08d2c7f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 68 deletions.
51 changes: 0 additions & 51 deletions .github/workflows/builder.yml

This file was deleted.

7 changes: 0 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@ permissions:
checks: write
contents: read

concurrency:
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.ref }}
cancel-in-progress: true

jobs:
ci:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -49,6 +45,3 @@ jobs:
with:
dockerfile: Dockerfile
ignore: DL3003,DL3008

# - name: Run tests 🧪
# run: npm run test
14 changes: 4 additions & 10 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:
branches:
- master

concurrency:
group: ci-${{ github.ref }}-1
cancel-in-progress: true

jobs:
extract-branch:
name: 'Fetch branch'
Expand All @@ -34,13 +38,3 @@ jobs:
needs:
- extract-branch
uses: maptiler/tileserver-gl/.github/workflows/ct.yml@master
builder:
name: 'Build & Publish Docker Image(s)'
needs:
- extract-branch
- ci
- ct
if: ${{ github.event_name == 'push' }}
uses: maptiler/tileserver-gl/.github/workflows/builder.yml@master
with:
branch: ${{ needs.extract-branch.outputs.current_branch }}

0 comments on commit 08d2c7f

Please sign in to comment.