Merge pull request #413 from headwaymaps/mkirk/update-planet-260420 #135
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Push `latest` containers | |
| on: | |
| push: | |
| tags: | |
| - 'v*' | |
| jobs: | |
| build-latest: | |
| name: Push latest images to ghcr.io | |
| runs-on: ubuntu-latest | |
| env: | |
| DAGGER_NO_NAG: 1 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install Dagger | |
| uses: dagger/dagger-for-github@v8.2.0 | |
| with: | |
| version: "latest" | |
| - name: Docker login | |
| run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u headwaymaps --password-stdin | |
| - name: Push latest images | |
| run: bin/build-images --publish --tags "latest ${{ github.ref_name }}" | |
| - name: Push latest branded images | |
| run: bin/build-images --publish --tags "maps-earth-latest maps-earth-${{ github.ref_name }}" --branding maps.earth | |