Skip to content

Commit

Permalink
Fix build script
Browse files Browse the repository at this point in the history
  • Loading branch information
Pencilcaseman committed May 16, 2024
1 parent 8565fbc commit a6f8c70
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
publish:
runs-on: ubuntu-latest
strategy:
fail-fast: false,
fail-fast: false
matrix:
rust:
- nightly
Expand Down
33 changes: 33 additions & 0 deletions .github/workflows/create-release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: "Create Release"

on:
push:
tags:
- "v*"
workflow_dispatch:
workflow_call:

jobs:
tagged-release:
name: "Tagged Release"
runs-on: "ubuntu-latest"

steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
submodules: recursive

- name: Zip Source Code
run: |
zip -r sccmod.zip ../sccmod
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
files: |
sccmod.zip
README.md
LICENSE-MIT
LICENSE-APACHE

0 comments on commit a6f8c70

Please sign in to comment.