Skip to content

Commit

Permalink
Prepare 0.0.6 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrobbel committed Mar 16, 2020
1 parent 6acf765 commit d12d2a2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/assets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ jobs:
args: --release --bin tydi --features=cli --target ${{ matrix.target }}
use-cross: true
- name: Create archive
run: tar -C target/${{ matrix.target }}/release -czf tydi-${{ github.event.release.tag_name }}-${{ matrix.target }}.tar.gz (tydi|tydi.exe)
run: |
shopt -s extglob
tar -C target/${{ matrix.target }}/release -czf tydi-${{ github.event.release.tag_name }}-${{ matrix.target }}.tar.gz @(tydi|tydi.exe)
- uses: actions/upload-release-asset@v1.0.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tydi"
version = "0.0.5"
version = "0.0.6"
description = "An HDL code generation utility for components described using the Tydi open specification."
authors = ["Johan Peltenburg", "Jeroen van Straten", "Matthijs Brobbel"]
edition = "2018"
Expand Down

0 comments on commit d12d2a2

Please sign in to comment.