This repository was archived by the owner on Nov 24, 2025. It is now read-only.
chore: streamline deprecation notices in entrypoint script and update… #41
Workflow file for this run
This file contains hidden or 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: Create docker image | |
| on: | |
| push: | |
| branches: | |
| - main | |
| tags: | |
| - v[0-9]+.[0-9]+.[0-9]+* | |
| paths: | |
| - Dockerfile | |
| - .github/workflows/update-docker-image.yml | |
| - container_digest.sh | |
| - docker_build.sh | |
| - docker_build_and_push.sh | |
| - docker_push.sh | |
| - entrypoint.sh | |
| - update_readme.sh | |
| - LICENSE.md | |
| - README.md | |
| - bin/* | |
| workflow_dispatch: | |
| jobs: | |
| docker-build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| id-token: write | |
| packages: write | |
| steps: | |
| - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # ratchet:actions/checkout@v3 | |
| - name: Build Docker Images | |
| uses: philips-software/docker-ci-scripts@main | |
| with: | |
| image-name: docker-ci-scripts | |
| tags: ${{ github.ref_name }} | |
| push-branches: main ${{ github.ref_name }} | |
| env: | |
| REGISTRY_USERNAME: ${{ github.actor }} | |
| REGISTRY_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| REGISTRY_URL: ghcr.io/philips-software | |
| GITHUB_ORGANIZATION: philips-software |