Bump versions to 2.0.1 #49
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 & Release | ||
on: | ||
push: | ||
tags: | ||
- "v*" | ||
env: | ||
CARGO_TERM_COLOR: always | ||
CARGO_INCREMENTAL: 0 | ||
jobs: | ||
create_github_release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Get version | ||
id: get_version | ||
run: | | ||
VERSION=$(grep '^version =' crates/fta/Cargo.toml | sed 's/^version = "\(.*\)"/\1/') | ||
echo "Version: $VERSION" | ||
echo "FTA_VERSION=$VERSION" >> $GITHUB_OUTPUT | ||
- name: Build binaries | ||
uses: ./.github/workflows/build.yml | ||
- name: Create GitHub release | ||
id: create_release | ||
uses: softprops/action-gh-release@v2 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ github.ref }} | ||
name: v${{ steps.get_version.outputs.FTA_VERSION }} | ||
draft: true | ||
prerelease: false | ||
- name: Download macOS artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: macos-binaries | ||
- name: Download windows artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: windows-binaries | ||
- name: Download linux artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: linux-binaries | ||
- name: Upload all assets | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
files: | | ||
fta-x86_64-apple-darwin.tar.gz | ||
fta-aarch64-apple-darwin.tar.gz | ||
fta-x86_64-pc-windows-msvc.zip | ||
fta-aarch64-pc-windows-msvc.zip | ||
fta-aarch64-unknown-linux-musl.tar.gz | ||
fta-x86_64-unknown-linux-musl.tar.gz | ||
fta-arm-unknown-linux-musleabi.tar.gz | ||
publish_rust_crate: | ||
runs-on: ubuntu-latest | ||
needs: [upload_assets_macos, upload_assets_windows, upload_assets_linux] | ||
Check failure on line 68 in .github/workflows/release.yml GitHub Actions / Build Binaries & ReleaseInvalid workflow file
Check failure on line 68 in .github/workflows/release.yml GitHub Actions / Build Binaries & ReleaseInvalid workflow file
Check failure on line 68 in .github/workflows/release.yml GitHub Actions / Build Binaries & ReleaseInvalid workflow file
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Update packages | ||
run: sudo apt-get update | ||
- name: Install Rust | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: stable | ||
components: rustfmt, clippy | ||
profile: minimal | ||
target: x86_64-unknown-linux-musl | ||
- name: Publish to crates.io | ||
env: | ||
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} | ||
run: | | ||
cargo publish --token $CARGO_REGISTRY_TOKEN | ||
working-directory: crates/fta | ||
publish_fta_cli: | ||
needs: [upload_assets_macos, upload_assets_windows, upload_assets_linux] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
- name: Setup Node.js environment | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: "20.x" | ||
registry-url: "https://registry.npmjs.org" | ||
- name: Download macOS artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: macos-binaries | ||
path: artifact/ | ||
- name: Download linux artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: linux-binaries | ||
path: artifact/ | ||
- name: Download windows artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: windows-binaries | ||
path: artifact/ | ||
- name: Extract .tar.gz artifacts | ||
run: | | ||
for file in artifact/*.tar.gz; do | ||
base=$(basename -- "$file") | ||
dirname="${base%%.*}" | ||
mkdir -p packages/fta/binaries/"$dirname" | ||
tar -xzf "$file" -C packages/fta/binaries/"$dirname" | ||
done | ||
- name: Extract .zip artifacts | ||
run: | | ||
for file in artifact/*.zip; do | ||
dir=$(basename "$file" .zip) | ||
mkdir -p "packages/fta/binaries/$dir" | ||
unzip -o "$file" -d "packages/fta/binaries/$dir" | ||
done | ||
# List out the binaries dir | ||
ls -R packages/fta/binaries/ | ||
- name: Publish to npm | ||
run: npm publish | ||
working-directory: packages/fta | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |