| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- name: macOS Release
- on:
- push:
- tags:
- - '*'
- jobs:
- release:
- runs-on: macos-latest
- steps:
- - name: Checkout
- uses: actions/checkout@v3
- with:
- fetch-depth: 0
- - uses: actions/setup-node@v3
- with:
- node-version: 16
- - name: Build Frontend
- env:
- CI: ""
- run: |
- cd web
- npm install
- REACT_APP_VERSION=$(git describe --tags) npm run build
- cd ..
- - name: Set up Go
- uses: actions/setup-go@v3
- with:
- go-version: '>=1.18.0'
- - name: Build Backend
- run: |
- go mod download
- go build -ldflags "-X 'message-pusher/common.Version=$(git describe --tags)'" -o message-pusher-macos
- - name: Release
- uses: softprops/action-gh-release@v1
- if: startsWith(github.ref, 'refs/tags/')
- with:
- files: message-pusher-macos
- draft: true
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|