Merge pull request #44 from USDA-ARS-GBRU/dependabot/pip/pillow-10.3.0 #92
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: Publish Docker images | |
on: | |
push: | |
branches: | |
- 'main' | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- | |
name: Login to Github Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Get short SHA | |
id: slug | |
run: echo "SHORT_SHA=`echo ${GITHUB_SHA} | cut -c1-8`" >> $GITHUB_ENV | |
- | |
name: Build and push AVX version of guidemaker | |
uses: docker/build-push-action@v5 | |
with: | |
context: "{{defaultContext}}:docker-images/avx" | |
push: true | |
tags: ghcr.io/usda-ars-gbru/guidemaker-avx:sha-${{ env.SHORT_SHA }} | |
- | |
name: Build and push noavx version of guidemaker | |
uses: docker/build-push-action@v5 | |
with: | |
context: "{{defaultContext}}:docker-images/avx" | |
push: true | |
tags: ghcr.io/usda-ars-gbru/guidemaker-noavx:sha-${{ env.SHORT_SHA }} |