Skip to content

Commit

Permalink
ci: upload release artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
cristianoliveira committed May 21, 2023
1 parent 837dcb2 commit 60e0e23
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
33 changes: 33 additions & 0 deletions .github/workflows/on-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Release artifacts

on:
push:
branches: ["ci/release-artifacts"]
pull_request:
branches: ["ci/release-artifacts"]

jobs:
build_release:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: build
run: make build

- name: Create artifacts folder
run: mkdir artifacts

- name: Create artifacts for linux
run: sh ci/script.sh
env:
TARGET: x86_64-unknown-linux-gnu

- name: Create artifacts for darwin
run: sh ci/script.sh
env:
TARGET: x86_64-apple-darwin

- name: LS files
run: ls && ls target
4 changes: 3 additions & 1 deletion ci/script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,7 @@ cargo test --target $TARGET

cargo build --target $TARGET --release

ls

# sanity check the file type
file target/$TARGET/release/funzzy
# file target/$TARGET/release/funzzy

0 comments on commit 60e0e23

Please sign in to comment.