rebuild image (style50 updates) #260
Workflow file for this run
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
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest-16-cores | |
steps: | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Log into Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build minimized image for linux/amd64 | |
uses: docker/build-push-action@v3 | |
with: | |
build-args: | | |
VCS_REF=${{ github.sha }} | |
load: true | |
platforms: linux/amd64 | |
tags: cs50/cli:amd64-minimized | |
cache-from: type=registry,ref=cs50/cli:amd64-minimized-buildcache | |
cache-to: type=registry,ref=cs50/cli:amd64-minimized-buildcache,mode=max | |
- name: Push linux/amd64 build to Docker Hub | |
if: ${{ github.ref == 'refs/heads/minimizing' }} | |
run: | | |
docker push cs50/cli:amd64-minimized | |
- name: Build for linux/amd64 | |
uses: docker/build-push-action@v3 | |
with: | |
build-args: | | |
VCS_REF=${{ github.sha }} | |
load: true | |
platforms: linux/amd64 | |
tags: cs50/cli:amd64 | |
cache-from: type=registry,ref=cs50/cli:amd64-buildcache | |
cache-to: type=registry,ref=cs50/cli:amd64-buildcache,mode=max | |
- name: Push linux/amd64 build to Docker Hub | |
if: ${{ github.ref == 'refs/heads/main' }} | |
run: | | |
docker push cs50/cli:amd64 | |
- name: Build for linux/arm64 | |
uses: docker/build-push-action@v3 | |
with: | |
build-args: | | |
VCS_REF=${{ github.sha }} | |
load: true | |
platforms: linux/arm64 | |
tags: cs50/cli:arm64 | |
cache-from: type=registry,ref=cs50/cli:arm64-buildcache | |
cache-to: type=registry,ref=cs50/cli:arm64-buildcache,mode=max | |
- name: Push linux/arm64 build to Docker Hub | |
if: ${{ github.ref == 'refs/heads/main' }} | |
run: | | |
docker push cs50/cli:arm64 | |
- name: Create multi-arch manifest and push to Docker Hub | |
if: ${{ github.ref == 'refs/heads/main' }} | |
run: | | |
docker manifest create cs50/cli:latest \ | |
--amend cs50/cli:amd64 \ | |
--amend cs50/cli:arm64 | |
docker manifest push cs50/cli:latest | |
- name: Re-deploy depdendents | |
if: ${{ github.ref == 'refs/heads/main' }} | |
uses: actions/github-script@v6 | |
with: | |
github-token: ${{ secrets.DEPLOY50_PAT }} | |
script: | | |
const dependents = [ | |
'server' | |
]; | |
for (let dependent of dependents) { | |
await github.rest.actions.createWorkflowDispatch({ | |
owner: 'cs50', | |
repo: dependent, | |
workflow_id: 'main.yml', | |
ref: 'main' | |
}); | |
} |