From 6ec7e223cecf1daf94d5ab3edd184a1fa5410740 Mon Sep 17 00:00:00 2001 From: Kamil Kosek Date: Tue, 26 Nov 2024 16:53:14 +0100 Subject: [PATCH 1/2] Update main.yml --- .github/workflows/main.yml | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index eef75d7..ccc73db 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -56,13 +56,13 @@ jobs: fi # Generate auto-generated release notes - - name: Generate Auto Release Notes - id: release_notes - run: | - auto_notes=$(gh release create ${{ env.VERSION }} --generate-notes --prerelease --dry-run --json body --jq .body) - echo "AUTO_RELEASE_NOTES<> $GITHUB_ENV - echo "$auto_notes" >> $GITHUB_ENV - echo "EOF" >> $GITHUB_ENV + #- name: Generate Auto Release Notes + # id: release_notes + # run: | + # auto_notes=$(gh release create ${{ env.VERSION }} --generate-notes --prerelease --dry-run --json body --jq .body) + # echo "AUTO_RELEASE_NOTES<> $GITHUB_ENV + # echo "$auto_notes" >> $GITHUB_ENV + # echo "EOF" >> $GITHUB_ENV # Create a release on GitHub - name: Create GitHub Release @@ -72,8 +72,5 @@ jobs: name: Release ${{ env.VERSION }} body: | ${{ env.CHANGELOG_CONTENT }} - - ## Auto-Generated Release Notes - ${{ env.AUTO_RELEASE_NOTES }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From e43d36dd24f6bfbdef05e6b80f246d80e238a13a Mon Sep 17 00:00:00 2001 From: Artur Y <10753921+artyorsh@users.noreply.github.com> Date: Wed, 4 Dec 2024 21:52:56 +0100 Subject: [PATCH 2/2] build docker image for amd64 and arm64 --- .github/workflows/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ccc73db..97e6223 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -37,6 +37,7 @@ jobs: uses: docker/build-push-action@v4 with: context: . + platforms: linux/amd64,linux/arm64 push: true tags: | ghcr.io/${{ github.repository }}:${{ env.VERSION }}