Skip to content

Capitalize secrets references (#4018) #3

Capitalize secrets references (#4018)

Capitalize secrets references (#4018) #3

name: Publish Antithesis Images
on:
workflow_dispatch:
inputs:
image_tag:
description: 'The tag to apply to published images'
default: latest
required: true
type: string
push:
branches:
- master
env:
REGISTRY: us-central1-docker.pkg.dev
REPOSITORY: molten-verve-216720/avalanche-repository
jobs:
antithesis:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Login to GAR
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 #v3.4.0
with:
registry: ${{ env.REGISTRY }}
username: _json_key
password: ${{ secrets.ANTITHESIS_GAR_JSON_KEY }}
- name: Build and push images for avalanchego test setup
run: ./scripts/run_task.sh build-antithesis-images-avalanchego
env:
IMAGE_PREFIX: ${{ env.REGISTRY }}/${{ env.REPOSITORY }}
IMAGE_TAG: ${{ github.event.inputs.image_tag || 'latest' }}
- name: Build and push images for xsvm test setup
run: ./scripts/run_task.sh build-antithesis-images-xsvm
env:
IMAGE_PREFIX: ${{ env.REGISTRY }}/${{ env.REPOSITORY }}
IMAGE_TAG: ${{ github.event.inputs.image_tag || 'latest' }}