v0.9.1 #18
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: release | |
on: | |
release: | |
types: [created] | |
jobs: | |
build: | |
name: release | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
target: | |
- x86_64-unknown-linux-gnu | |
- x86_64-apple-darwin | |
- aarch64-apple-darwin | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Fluent CI | |
uses: fluentci-io/setup-fluentci@v1 | |
- name: Set env | |
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV | |
- name: Build | |
run: | | |
deno install --import-map=https://deno.land/x/[email protected]/import_map.json -A -r -f https://deno.land/x/[email protected]/main.ts -n fluentci | |
fluentci run . compile | |
env: | |
TAG: ${{ env.RELEASE_VERSION }} | |
TARGET: ${{ matrix.target }} | |
- name: Upload release assets | |
run: | | |
for ext in tar.gz tar.gz.sha256; do | |
export FILE=/assets/fluentci_${{ env.RELEASE_VERSION }}_${{ matrix.target }}.$ext | |
fluentci run github_pipeline release_upload | |
done | |
env: | |
TAG: ${{ env.RELEASE_VERSION }} | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |