Skip to content

Bug fix: change container tag and PIP option for dev release builds (… #7

Bug fix: change container tag and PIP option for dev release builds (…

Bug fix: change container tag and PIP option for dev release builds (… #7

---
name: Build netlab devcontainer
on:
push:
tags: [ release_* ]
env:
REGISTRY: ghcr.io
jobs:
setup:
runs-on: ubuntu-latest
outputs:
IMAGE_TAG: ${{ steps.release_tag.outputs.IMAGE_TAG }}
steps:
- name: Find release tag
id: release_tag
run: .github/get-contaienr-tags.sh $GITHUB_REF_NAME >> $GITHUB_OUTPUT
build:
needs: [ setup ]
uses: ./.github/workflows/devcontainer-build.yml
with:
docker-tags: ${{ needs.setup.outputs.IMAGE_TAG }}
pip-options: ${{ needs.setup.outputs.PIP_OPTIONS }}
secrets:
GHCR_TOKEN: ${{ secrets.GHCR_TOKEN }}