Merge pull request #39 from mottljan/chore/remove-renovate #2
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: Deploy | |
| on: | |
| push: | |
| tags: | |
| - v* | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v6 | |
| # We need to login to dhi.io for getting hardened base image and to Docker Hub for pushing the image | |
| - name: Login | |
| uses: ./.github/actions/login | |
| with: | |
| user-name: ${{ secrets.DOCKER_HUB_USERNAME }} | |
| token: ${{ secrets.DOCKER_HUB_TOKEN }} | |
| - name: Preflight checks | |
| uses: ./.github/actions/common-preflight-check | |
| with: | |
| image-tag: ${{ github.ref_name }} | |
| - name: Push image | |
| shell: bash | |
| env: | |
| IMAGE_TAG: ${{ github.ref_name }} | |
| run: docker compose push |