Skip to content

Commit

Permalink
chore: fix indentation error of release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jopemachine committed Jun 4, 2024
1 parent d3cc571 commit 97a5764
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,22 @@ on: [push, pull_request]
jobs:
release:
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
strategy:
matrix:
target: ["x86_64", "aarch64"]
os: ["ubuntu18.04", "ubuntu20.04", "ubuntu22.04", "alpine"]
steps:
- uses: actions/checkout@v2
runs-on: ubuntu-latest
strategy:
matrix:
target: ["x86_64", "aarch64"]
os: ["ubuntu18.04", "ubuntu20.04", "ubuntu22.04", "alpine"]
steps:
- uses: actions/checkout@v2

- name: Build libbaihook
run: |
./build.sh ${{ matrix.os }}
rm -rf Makefile
- name: Build libbaihook
run: |
./build.sh ${{ matrix.os }}
rm -rf Makefile
- name: Release to GitHub
uses: softprops/action-gh-release@v1
with:
generate_release_notes: true
files: |
./*.so
- name: Release to GitHub
uses: softprops/action-gh-release@v1
with:
generate_release_notes: true
files: |
./*.so

0 comments on commit 97a5764

Please sign in to comment.