mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 13:37:38 +03:00
Use new ci-goreleaser (with TagLib 2)
This commit is contained in:
parent
176329343a
commit
6f4c55dbde
2 changed files with 7 additions and 6 deletions
6
.github/workflows/pipeline.yml
vendored
6
.github/workflows/pipeline.yml
vendored
|
@ -132,7 +132,7 @@ jobs:
|
||||||
path: ui/build
|
path: ui/build
|
||||||
|
|
||||||
- name: Config /github/workspace folder as trusted
|
- name: Config /github/workspace folder as trusted
|
||||||
uses: docker://deluan/ci-goreleaser:1.22.0-1
|
uses: docker://deluan/ci-goreleaser:1.22.0-2
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
with:
|
||||||
|
@ -140,7 +140,7 @@ jobs:
|
||||||
|
|
||||||
- name: Run GoReleaser - SNAPSHOT
|
- name: Run GoReleaser - SNAPSHOT
|
||||||
if: startsWith(github.ref, 'refs/tags/') != true
|
if: startsWith(github.ref, 'refs/tags/') != true
|
||||||
uses: docker://deluan/ci-goreleaser:1.22.0-1
|
uses: docker://deluan/ci-goreleaser:1.22.0-2
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
with:
|
||||||
|
@ -148,7 +148,7 @@ jobs:
|
||||||
|
|
||||||
- name: Run GoReleaser - RELEASE
|
- name: Run GoReleaser - RELEASE
|
||||||
if: startsWith(github.ref, 'refs/tags/')
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
uses: docker://deluan/ci-goreleaser:1.22.0-1
|
uses: docker://deluan/ci-goreleaser:1.22.0-2
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
with:
|
||||||
|
|
7
Makefile
7
Makefile
|
@ -9,7 +9,7 @@ GIT_SHA=source_archive
|
||||||
GIT_TAG=$(patsubst navidrome-%,v%,$(notdir $(PWD)))
|
GIT_TAG=$(patsubst navidrome-%,v%,$(notdir $(PWD)))
|
||||||
endif
|
endif
|
||||||
|
|
||||||
CI_RELEASER_VERSION=1.22.0-1 ## https://github.com/navidrome/ci-goreleaser
|
CI_RELEASER_VERSION=1.22.0-2 ## https://github.com/navidrome/ci-goreleaser
|
||||||
|
|
||||||
setup: check_env download-deps setup-git ##@1_Run_First Install dependencies and prepare development environment
|
setup: check_env download-deps setup-git ##@1_Run_First Install dependencies and prepare development environment
|
||||||
@echo Downloading Node dependencies...
|
@echo Downloading Node dependencies...
|
||||||
|
@ -94,6 +94,7 @@ buildjs: check_node_env ##@Build Build only frontend
|
||||||
.PHONY: buildjs
|
.PHONY: buildjs
|
||||||
|
|
||||||
all: warning-noui-build ##@Cross_Compilation Build binaries for all supported platforms. It does not build the frontend
|
all: warning-noui-build ##@Cross_Compilation Build binaries for all supported platforms. It does not build the frontend
|
||||||
|
@echo "Building binaries for all platforms using builder ${CI_RELEASER_VERSION}"
|
||||||
docker run -t -v $(PWD):/workspace -w /workspace deluan/ci-goreleaser:$(CI_RELEASER_VERSION) \
|
docker run -t -v $(PWD):/workspace -w /workspace deluan/ci-goreleaser:$(CI_RELEASER_VERSION) \
|
||||||
goreleaser release --clean --skip=publish --snapshot
|
goreleaser release --clean --skip=publish --snapshot
|
||||||
.PHONY: all
|
.PHONY: all
|
||||||
|
@ -105,9 +106,9 @@ single: warning-noui-build ##@Cross_Compilation Build binaries for a single supp
|
||||||
grep -- "- id: navidrome_" .goreleaser.yml | sed 's/- id: navidrome_//g'; \
|
grep -- "- id: navidrome_" .goreleaser.yml | sed 's/- id: navidrome_//g'; \
|
||||||
exit 1; \
|
exit 1; \
|
||||||
fi
|
fi
|
||||||
@echo "Building binaries for ${GOOS}/${GOARCH}"
|
@echo "Building binaries for ${GOOS}/${GOARCH} using builder ${CI_RELEASER_VERSION}"
|
||||||
docker run -t -v $(PWD):/workspace -e GOOS -e GOARCH -w /workspace deluan/ci-goreleaser:$(CI_RELEASER_VERSION) \
|
docker run -t -v $(PWD):/workspace -e GOOS -e GOARCH -w /workspace deluan/ci-goreleaser:$(CI_RELEASER_VERSION) \
|
||||||
goreleaser build --clean --snapshot --single-target --id navidrome_${GOOS}_${GOARCH}
|
goreleaser build --clean --snapshot -p 2 --single-target --id navidrome_${GOOS}_${GOARCH}
|
||||||
.PHONY: single
|
.PHONY: single
|
||||||
|
|
||||||
warning-noui-build:
|
warning-noui-build:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue