-
Notifications
You must be signed in to change notification settings - Fork 12
36 lines (35 loc) · 1.28 KB
/
Release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Release Artifacts
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+" # Push events to matching v*, i.e. 1.0, 20.15.10
- "v[0-9]+.[0-9]+.[0-9]+-rc*" # Push events to matching v*, i.e. 1.0-rc1, 20.15.10-rc5
jobs:
release-artifacts:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Build Artifacts
run: |
docker run --rm -v "$(pwd)":/code \
--mount type=volume,source="$(basename "$(pwd)")_cache",target=/code/target \
--mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \
cosmwasm/workspace-optimizer:0.12.13
- name: Create Release
uses: softprops/action-gh-release@v1
with:
files: |
artifacts/cw_placeholder.wasm
artifacts/cw_splitter.wasm
artifacts/gauge_adapter.wasm
artifacts/lp_converter.wasm
artifacts/nominated_trader.wasm
artifacts/wyndex_multi_hop.wasm
artifacts/wyndex_stake.wasm
artifacts/checksums.txt
artifacts/raw_migration.wasm
artifacts/wyndex_pair_lsd.wasm
artifacts/junoswap_staking.wasm
artifacts/wyndex_factory.wasm
artifacts/wyndex_pair.wasm