Skip to content

Deploy containers to Azure #2

Deploy containers to Azure

Deploy containers to Azure #2

name: Deploy containers to Azure
on:
push:
branches:
- main
# TODO match on regex instead
paths:
- pwn/**
- web/**
workflow_dispatch:
jobs:
main:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
id-token: write
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
python-version: 3.x
cache: pip
- name: Setup ctfcli
run: |
pip install -r requirements.txt
ctf plugins install https://github.com/pl4nty/ctfcli-deploy-azure.git
mkdir .ctf
cat <<EOF > .ctf/config
[config]
url = https://${{ vars.CTFD_DOMAIN }}
access_token = ${{ secrets.CTFD_TOKEN }}
[cookies]
site_password = ${{ secrets.CTFD_SITE_PASSWORD }}
[challenges]
EOF
shopt -s extglob
for chal in ?(pwn|web)/*/; do
echo "$chal = $chal" >> .ctf/config
done
# azure-identity doesn't support GitHub WIF
- uses: azure/[email protected]
with:
tenant-id: ${{ vars.AZURE_TENANT_ID }}
client-id: ${{ vars.AZURE_CLIENT_ID }}
allow-no-subscriptions: true
- name: Setup Azure Container Registry
run: az acr login --name ${{ vars.REGISTRY }}
- uses: docker/[email protected]
- name: Get auth params for buildx cache
uses: crazy-max/[email protected]
# TODO raise issue, throws error even if target challenge isn't deployable. ignore all errors for now
- name: Deploy containers
run: |
docker() {
if [ "$1" = "build" ]; then
command docker buildx build --cache-from type=gha --cache-to type=gha,mode=max "${@:2}"
else
command docker "$@"
fi
}
ctf challenge deploy --skip-login --host "azure://management.azure.com${{ vars.AZURE_CONTAINER_ENV }}?registry=${{ vars.REGISTRY }}&identity=${{ vars.AZURE_CONTAINER_IDENTITY }}&suffix=${{ vars.AZURE_CONTAINER_SUFFIX }}" || true
- name: Setup GitHub container registry
uses: docker/[email protected]
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ github.token }}
- name: Push container images to GitHub
run: |-
images=$(docker images $REGISTRY/*:latest --format "{{.Repository}}")
for image in $images; do
lowercase=${GITHUB_REPOSITORY_OWNER,,}
newtag=${image//$REGISTRY/ghcr\.io\/$lowercase}:latest
docker tag $image:latest $newtag
docker push $newtag
done
env:
REGISTRY: ${{ vars.REGISTRY }}