Skip to content

Add pinned VTS version and remove auto update #2

Add pinned VTS version and remove auto update

Add pinned VTS version and remove auto update #2

Workflow file for this run

name: Build
on:
pull_request:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: docker/setup-buildx-action@v2
- name: Get VTS version
run: echo "VTS_VERSION=$(grep -oP '^ARG VTS_VERSION=\K.*' Containerfile)" >> $GITHUB_ENV
- uses: docker/build-push-action@v5
with:
context: .
file: ./Containerfile
push: false
tags: test:vts-${{ env.VTS_VERSION }}