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

Commit

Permalink
create release workflow CI #1
Browse files Browse the repository at this point in the history
  • Loading branch information
abdfnx authored Oct 26, 2021
1 parent 3780f57 commit 9084efd
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Release

on:
push:
tags:
- "v*.*.*"

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Build
run: |
cargo build --release
mv ./target/release/ox ./target/release/editor
- name: Upload It
uses: softprops/action-gh-release@v1
with:
files: ./target/release/editor

0 comments on commit 9084efd

Please sign in to comment.