Skip to content

Commit

Permalink
test release
Browse files Browse the repository at this point in the history
  • Loading branch information
tsilva-figure committed Jul 11, 2022
1 parent 3ca8746 commit 9d5e4d1
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .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 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

0 comments on commit 9d5e4d1

Please sign in to comment.