diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 00000000..2ca39338 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,63 @@ +name: release package + +on: + push: + tags: [ 'v*.*.*' ] + +defaults: + run: + shell: 'bash -Eeuo pipefail -x {0}' + +env: + REGISTRY: ghcr.io + +jobs: + generate-jobs: + name: kube-eventer + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + include: + - + name: kube-eventer + image: kubeservice-stack/kube-eventer + file: ./deploy/Dockerfile.multi + platforms: linux/amd64,linux/arm64 + + steps: + - + name: Checkout + uses: actions/checkout@v3 + - id: git-x + run: | + echo "git-version=$(git describe --tags --always)" >> "$GITHUB_OUTPUT" + - id: git-branch + run: | + echo "git-branch=$(echo ${GITHUB_REF##*/} | tr '[A-Z]' '[a-z]')" >> "$GITHUB_OUTPUT" + - + name: Set up QEMU + uses: docker/setup-qemu-action@v2 + - + name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + - name: Log in to the Container registry + uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9 + with: + registry: ${{ env.REGISTRY }} + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + - + name: Build and push + uses: docker/build-push-action@v3 + with: + file: ${{ matrix.file }} + platforms: ${{ matrix.platforms }} + push: true + tags: | + ${{ env.REGISTRY }}/${{ matrix.image }}:${{steps.git-branch.outputs.git-branch}} + ${{ env.REGISTRY }}/${{ matrix.image }}:latest + - name: Test ${{ matrix.name }} + run: | + docker pull ${{ env.REGISTRY }}/${{ matrix.image}}:${{steps.git-branch.outputs.git-branch}} + docker image inspect ${{ env.REGISTRY }}/${{ matrix.image}}:${{steps.git-branch.outputs.git-branch}}