[DPE-2702] Release 3.6.0 (#32) #23
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
name: Publish new Kafka SNAP revision | |
on: | |
push: | |
branches: | |
- '3/[a-z]+' | |
workflow_call: | |
workflow_dispatch: | |
jobs: | |
checks: | |
name: Check Metadata and branch consistency | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v3 | |
- id: get-current-version | |
name: Retrieve Metadata | |
run: | | |
VERSION=$(yq '(.version|split("-"))[0]' snap/snapcraft.yaml) | |
echo "version=${VERSION}" >> $GITHUB_OUTPUT | |
BRANCH=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}} | |
echo "branch=${BRANCH}" >> $GITHUB_OUTPUT | |
echo "risk=${BRANCH##*\/}" >> $GITHUB_OUTPUT | |
echo "track=${BRANCH%*\/*}" >> $GITHUB_OUTPUT | |
- name: Check consistency between metadata and release branch | |
run: | | |
MAJOR_VERSION=$(echo ${{ steps.get-current-version.outputs.version }} | sed -n "s/\(^[0-9]*\).*/\1/p") | |
if [ "${MAJOR_VERSION}" != "${{ steps.get-current-version.outputs.track }}" ]; then exit 1; fi | |
continue-on-error: false | |
build: | |
name: Build snap | |
needs: checks | |
uses: canonical/data-platform-workflows/.github/workflows/build_snap_without_cache.yaml@v2 | |
publish: | |
name: Publish Snap | |
runs-on: ubuntu-latest | |
needs: build | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/download-artifact@v3 | |
with: | |
name: ${{ needs.build.outputs.artifact-name }} | |
- id: get-snap-name | |
run: echo "SNAP_FILE=$(ls *.snap)" >> $GITHUB_OUTPUT | |
- name: Publish snap | |
id: publish | |
uses: snapcore/action-publish@v1 | |
env: | |
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.STORE_LOGIN }} | |
with: | |
snap: ${{ steps.get-snap-name.outputs.SNAP_FILE }} | |
release: ${{ github.ref_name }} | |
- name: Upload snapcraft logs | |
if: ${{ failure() && steps.publish.outcome == 'failure' }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: snapcraft-release-logs | |
path: ~/.local/state/snapcraft/log/ | |
if-no-files-found: error |