Test. #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Binaries | |
on: | |
push: | |
tags: | |
- '*' # Only build on tag pushes for releases | |
workflow_dispatch: # Allow manual triggering of the build | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
include: | |
- os: ubuntu-latest | |
binary_name: sqlwrite-linux | |
- os: macos-latest | |
binary_name: sqlwrite-mac | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
if [[ "$RUNNER_OS" == "Linux" ]]; then | |
sudo apt-get update | |
sudo apt-get install -y make curl libcurl4-openssl-dev | |
fi | |
- name: Build with Make | |
run: make | |
- name: Rename binary | |
run: | | |
mv sqlwrite ${{ matrix.binary_name }} | |
- name: Upload binary as artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ matrix.binary_name }} | |
path: ${{ matrix.binary_name }} | |
release: | |
needs: build | |
runs-on: ubuntu-latest | |
if: startsWith(github.ref, 'refs/tags/') | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Download Linux artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: sqlwrite-linux | |
path: . | |
- name: Download macOS artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: sqlwrite-mac | |
path: . | |
- name: Create GitHub Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref_name }} | |
release_name: Release ${{ github.ref_name }} | |
draft: false | |
prerelease: false | |
- name: Upload Linux binary to release | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./sqlwrite-linux | |
asset_name: sqlwrite-linux | |
asset_content_type: application/octet-stream | |
- name: Upload macOS binary to release | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./sqlwrite-mac | |
asset_name: sqlwrite-mac | |
asset_content_type: application/octet-stream |