Skip to content

Commit

Permalink
ci: add release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
wizard-28 authored May 2, 2022
1 parent 928d9ed commit 1ae9f7f
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Release

on:
workflow_dispatch


env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --release
- name: Move generated files
- run: mv target/release/build/rhino-config-*/out/* target/release/
- uses: actions/upload-artifact@v3
with:
name: rhino-config
path: |
target/release/rhino-config
target/release/_rhino-config.ps1
target/release/rhino-config.1
target/release/rhino-config.bash
target/release/rhino-config.elv
target/release/rhino-config.fish

0 comments on commit 1ae9f7f

Please sign in to comment.