updated workflow #8
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
name: Build and publish the Containers | ||
on: | ||
push: | ||
branches: | ||
- build_workflow | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
env: | ||
ROOTPATH: /home/runner/work/CYBERTEC-pg-container/CYBERTEC-pg-container | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v1 | ||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: '1.22' | ||
- name: Build base | ||
run: | | ||
make base | ||
tag: | ||
runs-on: ubuntu-latest | ||
env: | ||
IMAGEPRAEFIX: docker.io/cybertecpostgresql/cybertec-pg-container-dev | ||
PGVERSION: 16.3 | ||
BUILD: 1 | ||
TYPE: dev | ||
needs: build | ||
steps: | ||
- name: Tag and push container1 | ||
run: | | ||
Check failure on line 45 in .github/workflows/build_containers.yaml GitHub Actions / Build and publish the ContainersInvalid workflow file
|
||
docker tag user/base:latest ${{ IMAGEPRAEFIX }}/base:base-${{ BUILD }}-${{ TYPE }} | ||