File tree Expand file tree Collapse file tree 3 files changed +7
-10
lines changed
Expand file tree Collapse file tree 3 files changed +7
-10
lines changed Original file line number Diff line number Diff line change 3838 - name : " Log in to DockerHub"
3939 uses : docker/login-action@v3
4040 with :
41- registry : faasm.azurecr .io
42- username : ${{ secrets.ACR_SERVICE_PRINCIPAL_ID }}
43- password : ${{ secrets.ACR_SERVICE_PRINCIPAL_PASSWORD }}
41+ registry : ghcr .io
42+ username : faasm
43+ password : ${{ secrets.GHCR_PAT }}
4444 - name : " Build and push examples-build image"
4545 uses : docker/build-push-action@v4
4646 with :
5151 EXAMPLES_VERSION=${{ env.EXAMPLES_VERSION }}
5252 PYTHON_VERSION=${{ env.PYTHON_VERSION }}
5353 context : .
54- tags : faasm.azurecr.io /examples-build:${{ env.EXAMPLES_VERSION }}
54+ tags : ghcr.io/faasm /examples-build:${{ env.EXAMPLES_VERSION }}
Original file line number Diff line number Diff line change 6161 if : ${{ needs.needs-build.outputs.needs-wasm == 'true' }}
6262 runs-on : ubuntu-latest
6363 container :
64- image : faasm.azurecr.io/examples-build:0.6.0_0.4.0
65- credentials :
66- username : ${{ secrets.ACR_SERVICE_PRINCIPAL_ID }}
67- password : ${{ secrets.ACR_SERVICE_PRINCIPAL_PASSWORD }}
64+ image : ghcr.io/faasm/examples-build:0.6.0_0.4.0
6865 steps :
6966 - name : " Checkout code"
7067 uses : actions/checkout@v4
Original file line number Diff line number Diff line change 11ARG CPP_VERSION
22ARG EXAMPLES_VERSION
33# Base image is not re-built often and tag may lag behind
4- FROM faasm.azurecr.io /examples-base:0.6.0_0.4.0 AS base
5- FROM faasm.azurecr.io /cpp-sysroot:${CPP_VERSION:-dead}
4+ FROM ghcr.io/faasm /examples-base:0.6.0_0.4.0 AS base
5+ FROM ghcr.io/faasm /cpp-sysroot:${CPP_VERSION:-dead}
66
77SHELL ["/bin/bash" , "-c" ]
88ENV IN_DOCKER="on"
You can’t perform that action at this time.
0 commit comments