From 49582d6a8f60aec7a372c79d60affe4fd85804d7 Mon Sep 17 00:00:00 2001 From: Knut Ahlers Date: Sat, 22 Jul 2023 14:42:15 +0200 Subject: [PATCH] Configure auto-publishing Signed-off-by: Knut Ahlers --- .github/workflows/test-and-build.yml | 79 ++++++++++++++++++++++++++++ Makefile | 5 ++ 2 files changed, 84 insertions(+) create mode 100644 .github/workflows/test-and-build.yml create mode 100644 Makefile diff --git a/.github/workflows/test-and-build.yml b/.github/workflows/test-and-build.yml new file mode 100644 index 0000000..cb2a042 --- /dev/null +++ b/.github/workflows/test-and-build.yml @@ -0,0 +1,79 @@ +--- + +name: test-and-build +on: + push: + branches: ['*'] + tags: ['v*'] + +permissions: + contents: write + +jobs: + test-and-build: + defaults: + run: + shell: bash + + container: + image: luzifer/archlinux + env: + CGO_ENABLED: 0 + GOPATH: /go + + runs-on: ubuntu-latest + + steps: + - name: Install required packages + run: | + pacman -Syy --noconfirm \ + awk \ + curl \ + diffutils \ + git \ + go \ + make \ + tar \ + trivy \ + unzip \ + which \ + zip + + - uses: actions/checkout@v3 + + - name: Marking workdir safe + run: git config --global --add safe.directory /__w/backoff/backoff + + - name: Build release + run: make publish + env: + FORCE_SKIP_UPLOAD: 'true' + MOD_MODE: readonly + NO_TESTS: 'true' + PACKAGES: '.' + + - name: Execute Trivy scan + run: | + trivy fs . \ + --dependency-tree \ + --exit-code 1 \ + --format table \ + --ignore-unfixed \ + --quiet \ + --scanners config,license,secret,vuln \ + --severity HIGH,CRITICAL \ + --skip-dirs docs + + - name: Extract changelog + run: 'awk "/^#/ && ++c==2{exit}; /^#/f" "History.md" | tail -n +2 >release_changelog.md' + + - name: Release + uses: ncipollo/release-action@v1 + if: startsWith(github.ref, 'refs/tags/') + with: + artifacts: '.build/*' + bodyFile: release_changelog.md + draft: false + generateReleaseNotes: false + +... diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..cab2698 --- /dev/null +++ b/Makefile @@ -0,0 +1,5 @@ +default: + +publish: + curl -sSLo golang.sh https://raw.githubusercontent.com/Luzifer/github-publish/master/golang.sh + bash golang.sh