Skip to content

Commit

Permalink
Merge pull request #160 from okp4/ci/release-arm64
Browse files Browse the repository at this point in the history
Ci/release arm64
  • Loading branch information
amimart authored Sep 23, 2022
2 parents 0503e09 + 1f21ce4 commit 86104ac
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ jobs:
with:
token: ${{ secrets.OKP4_TOKEN }}

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Release project
uses: cycjimmy/semantic-release-action@v2
with:
Expand Down
6 changes: 6 additions & 0 deletions .releaserc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ plugins:
- name: okp4d-${nextRelease.version}-linux-amd64.tar.gz
label: okp4d-${nextRelease.version}-linux-amd64.tar.gz
path: "./target/release/okp4d-${nextRelease.version}-linux-amd64.tar.gz"
- name: okp4d-${nextRelease.version}-linux-arm64
label: okp4d-${nextRelease.version}-linux-arm64
path: "./target/release/okp4d-${nextRelease.version}-linux-arm64"
- name: okp4d-${nextRelease.version}-linux-arm64.tar.gz
label: okp4d-${nextRelease.version}-linux-arm64.tar.gz
path: "./target/release/okp4d-${nextRelease.version}-linux-arm64.tar.gz"
- name: sha256sum.txt
label: sha256sum.txt
path: "./target/release/sha256sum.txt"
Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ ENVIRONMENTS_TARGETS = $(addprefix build-go-, $(ENVIRONMENTS))

# Release binaries
RELEASE_BINARIES = \
linux-amd64
linux-amd64 \
linux-arm64
RELEASE_TARGETS = $(addprefix release-binary-, $(RELEASE_BINARIES))

.PHONY: all lint lint-go build build-go help
Expand Down

0 comments on commit 86104ac

Please sign in to comment.