Skip to content

Commit

Permalink
ci: release make
Browse files Browse the repository at this point in the history
  • Loading branch information
javalsai authored Jul 14, 2024
1 parent 2c9c83a commit 39ee482
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: C Make

on:
release:
types: [created]

jobs:
release:
permissions: write-all
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: make
run: make
- uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: lidm
asset_name: lidm
tag: ${{ github.ref }}

0 comments on commit 39ee482

Please sign in to comment.