Skip to content

Commit

Permalink
release: prepare for v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ktmeaton committed Dec 4, 2023
1 parent 762204e commit d61deee
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 10 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,16 @@ jobs:
run: |
mkdir target/release
mv target/rebar-x86_64-unknown-linux-musl/rebar target/release/rebar-x86_64-unknown-linux-musl
mv target/rebar-x86_64-unknown-linux-musl/rebar target/release/rebar-x86_64-unknown-linux-musl
mv target/rebar-x86_64-pc-windows-gnu/rebar target/release/rebar-x86_64-pc-windows-gnu
mv target/rebar-x86_64-apple-darwin/rebar target/release/rebar-x86_64-apple-darwin
mv target/rebar-docker/rebar.tar target/release/rebar-docker.tar
ls -l target/release/
- name: create release
uses: ncipollo/release-action@v1
with:
# comma-separated
artifacts: "target/release/rebar-x86_64-unknown-linux-gnu,target/release/rebar-x86_64-unknown-linux-musl"
# aarch64-apple-darwin
# aarch64-unknown-linux-gnu
# aarch64-unknown-linux-musl
# x86_64-apple-darwin
# x86_64-pc-windows-gnu

artifacts: "target/release/rebar-x86_64-unknown-linux-musl,target/release/rebar-x86_64-pc-windows-gnu,target/release/rebar-x86_64-apple-darwin,target/release/rebar-docker.tar"
artifactErrorsFailBuild: true
draft: true
generateReleaseNotes: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,9 @@ jobs:
- name: validate (non-windows)
if: ${{ matrix.os != 'windows-latest' }}
run: |
if [[ $(grep "fail" output/example1/linelist.tsv) ]]; then exit 1; fi
if [[ $(grep "fail" output/validate/linelist.tsv) ]]; then exit 1; fi
if [[ $(grep "fail" output/toy1/linelist.tsv) ]]; then exit 1; fi
if [[ $(grep "fail" output/alignment/linelist.tsv) ]]; then exit 1; fi
if [[ $(grep "fail" output/populations/linelist.tsv) ]]; then exit 1; fi
# - name: validate (windows)
# if: ${{ matrix.os == 'windows-latest' }}
Expand Down

0 comments on commit d61deee

Please sign in to comment.