Skip to content

Release new Develop Version #32

Release new Develop Version

Release new Develop Version #32

name: "Release new Develop Version"
on:
workflow_run:
workflows: ["Verify new Code"]
types:
- completed
jobs:
download-lib:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
repository: "samply/lens-angular"
ref: "feature/eucaim-prototype"
path: "lib"
- uses: actions/upload-artifact@v4
with:
name: "lib"
path: "**"
build-and-publish:
uses: samply/github-workflows/.github/workflows/docker-ci.yml@main
needs: download-lib
with:
image-name: ${{ github.repository }}
build-platforms: 'linux/amd64'
artifact-name: '*'
push-to: dockerhub
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}