Skip to content

Commit

Permalink
Merge pull request #12 from FigureTechnologies/tsilva/issuer-flow-upg…
Browse files Browse the repository at this point in the history
…rades-flexible

Tsilva/issuer flow upgrades flexible
  • Loading branch information
tsilva-figure authored Aug 29, 2022
2 parents ed6f98e + e94befc commit fb0ebf9
Show file tree
Hide file tree
Showing 26 changed files with 2,200 additions and 1,649 deletions.
20 changes: 19 additions & 1 deletion .github/workflows/rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches: [ main ]
tags:
- 'v*.*.*'
- 't*.*.*'
pull_request:
branches: [ main ]

Expand All @@ -20,7 +21,7 @@ jobs:
- name: toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: 1.51.0-x86_64-unknown-linux-gnu
toolchain: 1.61.0-x86_64-unknown-linux-gnu
default: true
components: clippy, rustfmt
- name: cargo format
Expand Down Expand Up @@ -57,6 +58,23 @@ jobs:
- name: optimize
run: make optimize
- name : release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
files: |
artifacts/marketpalace_raise_contract.wasm
artifacts/checksums.txt
test-release:
needs: check
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/t')
steps:
- name: checkout
uses: actions/checkout@v2
- name: optimize
run: make optimize
- name : test-release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@
# IDEs
*.iml
.idea
.vscode
Loading

0 comments on commit fb0ebf9

Please sign in to comment.