CI: Cleanup and update workflow
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
b0aa0492c3
commit
a5971197af
1 changed files with 4 additions and 29 deletions
33
.github/workflows/test-and-build.yml
vendored
33
.github/workflows/test-and-build.yml
vendored
|
@ -8,7 +8,6 @@ on:
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
issues: write
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test-and-build:
|
test-and-build:
|
||||||
|
@ -17,7 +16,7 @@ jobs:
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
container:
|
container:
|
||||||
image: luzifer/archlinux
|
image: luzifer/gh-arch-env
|
||||||
env:
|
env:
|
||||||
CGO_ENABLED: 0
|
CGO_ENABLED: 0
|
||||||
GOPATH: /go
|
GOPATH: /go
|
||||||
|
@ -25,28 +24,9 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Enable custom AUR package repo
|
- uses: actions/checkout@v4
|
||||||
run: echo -e "[luzifer]\nSigLevel = Never\nServer = https://archrepo.hub.luzifer.io/\$arch" >>/etc/pacman.conf
|
with:
|
||||||
|
show-progress: false
|
||||||
- name: Install required packages
|
|
||||||
run: |
|
|
||||||
pacman -Syy --noconfirm \
|
|
||||||
awk \
|
|
||||||
curl \
|
|
||||||
diffutils \
|
|
||||||
git \
|
|
||||||
go \
|
|
||||||
golangci-lint-bin \
|
|
||||||
make \
|
|
||||||
nodejs-lts-hydrogen \
|
|
||||||
npm \
|
|
||||||
tar \
|
|
||||||
trivy \
|
|
||||||
unzip \
|
|
||||||
which \
|
|
||||||
zip
|
|
||||||
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
|
|
||||||
- name: Marking workdir safe
|
- name: Marking workdir safe
|
||||||
run: git config --global --add safe.directory /__w/ipt-loadbalancer/ipt-loadbalancer
|
run: git config --global --add safe.directory /__w/ipt-loadbalancer/ipt-loadbalancer
|
||||||
|
@ -58,11 +38,6 @@ jobs:
|
||||||
|
|
||||||
- name: Build release
|
- name: Build release
|
||||||
run: make publish
|
run: make publish
|
||||||
env:
|
|
||||||
FORCE_SKIP_UPLOAD: 'true'
|
|
||||||
MOD_MODE: readonly
|
|
||||||
NO_TESTS: 'true'
|
|
||||||
PACKAGES: '.'
|
|
||||||
|
|
||||||
- name: Extract changelog
|
- name: Extract changelog
|
||||||
run: 'awk "/^#/ && ++c==2{exit}; /^#/f" "History.md" | tail -n +2 >release_changelog.md'
|
run: 'awk "/^#/ && ++c==2{exit}; /^#/f" "History.md" | tail -n +2 >release_changelog.md'
|
||||||
|
|
Loading…
Reference in a new issue