mirror of
https://github.com/RubyMetric/chsrc.git
synced 2024-11-25 09:41:46 +08:00
33 lines
608 B
YAML
33 lines
608 B
YAML
|
name: macOS Build
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ "gh-pipeline" ]
|
||
|
pull_request:
|
||
|
branches: [ "gh-pipeline" ]
|
||
|
|
||
|
jobs:
|
||
|
build-and-upload:
|
||
|
|
||
|
runs-on: macos-latest
|
||
|
|
||
|
steps:
|
||
|
|
||
|
- name: Checkout repo
|
||
|
uses: actions/checkout@v3
|
||
|
|
||
|
- name: Compile chsrc x64
|
||
|
run: |
|
||
|
make CI CI_BUILD_NAME=chsrc-x64-macos
|
||
|
|
||
|
- name: List files
|
||
|
run: ls *-macos
|
||
|
|
||
|
- name: Release
|
||
|
uses: softprops/action-gh-release@v1
|
||
|
# if: startsWith(github.ref, 'refs/tags/')
|
||
|
with:
|
||
|
tag_name: preview
|
||
|
files: |
|
||
|
chsrc-x64-macos
|
||
|
token: ${{ secrets.CHSRC_UPLOAD }}
|