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 e8c6a63
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 1 deletion.
36 changes: 36 additions & 0 deletions .github/workflows/on-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Release artifacts

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

jobs:
build_release:
env:
RELEASE_TAG: "foo"

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
11 changes: 10 additions & 1 deletion ci/script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,14 @@ cargo test --target $TARGET

cargo build --target $TARGET --release

cd target/release
ls -l

ARTIFACT="funzzy-${RELEASE_TAG:?"Missing release tag"}-${TARGET}.tar.gz"

tar czf "../$ARTIFACT" *

cp "../$ARTIFACT" ../../artifacts/

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

0 comments on commit e8c6a63

Please sign in to comment.