Build #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 | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-13, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Install Crystal | |
uses: crystal-lang/install-crystal@v1 | |
- name: Checkout source code | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: shards install | |
- name: Inject slug/short variables | |
uses: rlespinasse/github-slug-action@v4 | |
- if: matrix.os == 'ubuntu-latest' | |
name: Build binary (Linux) | |
run: | | |
mkdir build | |
docker-compose run --rm app crystal build src/mint.cr -o build/mint-${GITHUB_REF_SLUG}-linux --static --no-debug --release | |
- if: startsWith(matrix.os, 'macos') | |
name: Build binary (macOS) | |
run: | | |
mkdir build | |
crystal build src/mint.cr -o build/mint-${GITHUB_REF_SLUG}-${{ matrix.os }} --release | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: build | |
path: build | |
- if: github.ref == 'refs/heads/master' | |
name: Upload to S3 | |
uses: shallwefootball/upload-s3-action@v1.3.3 | |
with: | |
aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws_bucket: ${{ secrets.AWS_BUCKET }} | |
aws_key_id: ${{ secrets.AWS_KEY }} | |
destination_dir: "" | |
source_dir: build | |
- if: startsWith(github.ref, 'refs/tags/') | |
name: Upload to GitHub Releases | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
tag: ${{ github.ref }} | |
overwrite: true | |
file_glob: true | |
file: build/* |