Skip to content

Commit

Permalink
add release
Browse files Browse the repository at this point in the history
  • Loading branch information
jungleraptor committed Apr 26, 2023
1 parent 7fc90d3 commit 62f811d
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions .github/workflows/musl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,32 @@
name: musl
on:
pull_request:
paths:
- "musl/**"
- .github/workflows/musl.yaml
push:
branches:
- "master"
tags:
- "*"

jobs:
arm-linux-musleabihf:
runs-on: ubuntu-22.04
steps:
- name: checkout source
- name: Checkout source
uses: actions/checkout@v2

- name: build arm-linux-musleabihf
- name: Build arm-linux-musleabihf
run: make arm-linux-musleabihf

- name: Upload release
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: "arm-linux-musleabihf.tar.gz"
tag: ${{ github.ref }}
overwrite: true
file_glob: true

0 comments on commit 62f811d

Please sign in to comment.