2.0.0 #4
Workflow file for this run
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
# for releases we run in sequence the qualityt checks and the build | |
name: Build release | |
on: | |
push: | |
tags: [ 'v*.*.*' ] | |
jobs: | |
quality: | |
uses: ./.github/workflows/reuse-quality.yml | |
build: | |
needs: quality | |
uses: ./.github/workflows/reuse-build.yml | |
deploy: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- id: get_version | |
uses: battila7/get-version-action@v2 | |
- name: Send Keel notifications to koumoul.com | |
run: | | |
curl -s --fail --show-error -X POST https://keel.admin.koumoul.com/v1/webhooks/native -u ${{ secrets.KEEL_PROD_USER }}:${{ secrets.KEEL_PROD_PASSWORD }} -d '{"name": "ghcr.io/${{ github.repository }}", "tag": "${{ steps.get_version.outputs.major }}"}' | |
curl -s --fail --show-error -X POST https://keel.admin.koumoul.com/v1/webhooks/native -u ${{ secrets.KEEL_PROD_USER }}:${{ secrets.KEEL_PROD_PASSWORD }} -d '{"name": "ghcr.io/${{ github.repository }}/daemon", "tag": "${{ steps.get_version.outputs.major }}"}' | |