Skip to content
This repository was archived by the owner on Dec 28, 2021. It is now read-only.

Commit 9084efd

Browse files
authored
create release workflow CI #1
1 parent 3780f57 commit 9084efd

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/release.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
tags:
6+
- "v*.*.*"
7+
8+
env:
9+
CARGO_TERM_COLOR: always
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/checkout@v2
17+
- name: Build
18+
run: |
19+
cargo build --release
20+
mv ./target/release/ox ./target/release/editor
21+
22+
- name: Upload It
23+
uses: softprops/action-gh-release@v1
24+
with:
25+
files: ./target/release/editor

0 commit comments

Comments
 (0)