-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Replace committed binary with GitHub actions workflow #18
Open
shasheene
wants to merge
4
commits into
seamia:master
Choose a base branch
from
shasheene:replace-committed-binary-with-github-actions-workflow
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
85ff7eb
Gopkg.toml: Set seamia/tools to version v1.1.8, not master branch
shasheene 3326038
Delete precompiled binaries commited in repo
shasheene 4e20b36
actions: Build on GA upon push
shasheene 4fceca4
actions: Upload git artifacts (on push) and assets (on tag)
shasheene File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
name: Build and release | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
# Specify a test matrix of specific OS/arch pairs using GitHub's special expansion matching syntax described in | ||
# [1] | ||
# | ||
# [1] https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/running-variations-of-jobs-in-a-workflow#expanding-or-adding-matrix-configurations | ||
go-os-target: ["windows", "darwin", "linux"] | ||
go-arch-target: ["amd64", "arm64"] | ||
include: | ||
# Add the JS/wasm target (standalone since it can't pair with the matrix above | ||
- go-os-target: "js" | ||
go-arch-target: "wasm" | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: '1.20' | ||
|
||
- name: Build all protodot other than Windows | ||
run: go build -o "build/protodot-${{ matrix.go-os-target }}-${{ matrix.go-arch-target }}" | ||
if: matrix.go-os-target != 'windows' | ||
env: | ||
GOOS: ${{ matrix.go-os-target }} | ||
GOARCH: ${{ matrix.go-arch-target }} | ||
|
||
- name: Build protodot for Windows with exe extension | ||
run: go build -o "build/protodot-${{ matrix.go-os-target }}-${{ matrix.go-arch-target }}.exe" | ||
if: matrix.go-os-target == 'windows' | ||
env: | ||
GOOS: ${{ matrix.go-os-target }} | ||
GOARCH: ${{ matrix.go-arch-target }} | ||
|
||
|
||
- name: Upload built assets (on tag push) | ||
uses: softprops/action-gh-release@v2 | ||
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') | ||
with: | ||
files: build/* | ||
|
||
# Upload GitHub Action workflow *artifacts*. Note "artifacts" are a different concept to GitHub release assets. | ||
# The former is available on each GitHub Actions workflow run. The latter is associated with only a pushed tag. | ||
|
||
- name: Upload release artifacts except Windows | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: "protodot-${{ matrix.go-os-target }}-${{ matrix.go-arch-target }}" | ||
path: "build/protodot-${{ matrix.go-os-target }}-${{ matrix.go-arch-target }}" | ||
|
||
# Ensure Windows assets have exe extension | ||
- name: Upload remaining Windows release artifacts (with 'exe' extension) | ||
uses: actions/upload-artifact@v3 | ||
if: matrix.go-os-target == 'windows' | ||
with: | ||
name: "protodot-${{ matrix.go-os-target }}-${{ matrix.go-arch-target }}.exe" | ||
path: "build/protodot-${{ matrix.go-os-target }}-${{ matrix.go-arch-target }}.exe" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Whoops I lost the following line that's supposed to be here