Merge pull request #76 from funidata/feature/issue-2/multiple-premises #26
This file contains 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 (main) | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build image | |
uses: ./.github/workflows/build_image.yaml | |
tests: | |
name: Run tests | |
uses: ./.github/workflows/run_tests.yaml | |
needs: | |
- build | |
publish: | |
name: Publish image | |
runs-on: ubuntu-latest | |
needs: | |
- build | |
- tests | |
permissions: | |
packages: write | |
steps: | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Download artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: hybridilusmu | |
path: /tmp | |
- name: Load image | |
run: docker load --input /tmp/hybridilusmu.tar | |
- name: Login to GHCR | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Tag image | |
run: docker tag hybridilusmu ghcr.io/funidata/hybridilusmu:next | |
- name: Push image to GHCR | |
run: docker push ghcr.io/funidata/hybridilusmu:next |