Skip to content

Updates to fix build #27

Updates to fix build

Updates to fix build #27

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
inputs:
version:
description: 'The version of the release'
required: false
default: 'latest'
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-22.04
permissions:
contents: write
id-token: write
actions: write
packages: write
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Install Cross Compilation Targets
run: |
rustup target add x86_64-unknown-linux-gnu
rustup target add aarch64-unknown-linux-gnu
rustup target add x86_64-apple-darwin
rustup target add aarch64-apple-darwin
rustup target add x86_64-pc-windows-gnu
rustup target add aarch64-pc-windows-msvc
cargo install cross
- name: Build Binaries
run: |
version="latest"
mkdir -p bin
architectures=("x86_64-unknown-linux-musl")
for arch in "${architectures[@]}"; do
cross build --release --target $arch
arch_name=$(echo $arch | sed 's/[^a-zA-Z0-9]/-/g') # Sanitize the architecture name
mv target/$arch/release/journalview bin/journalview-$version-$arch_name
done
echo "ARTIFACT_NAME=journalview-${version}-$(date +'%d.%m.%Y').zip" >> $GITHUB_ENV
- name: Create a zip file with binaries
run: |
zip -r ${{ env.ARTIFACT_NAME }} bin/
- name: Check GitHub Token
run: |
echo "Token Length: ${#GITHUB_TOKEN}"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Debug GitHub Token
run: |
curl -H "Authorization: token $GITHUB_TOKEN" https://api.github.com/user
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create GitHub Release
uses: actions/create-release@v1
id: create_release
with:
tag_name: v0.0.${{ github.run_number }}
release_name: "Release v0.0.${{ github.run_number }}"
body: "Release of journalview version ${{ github.event.inputs.version }}"
draft: false
prerelease: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Debug Upload URL
run: |
echo "Upload URL: ${{ steps.create_release.outputs.upload_url }}"
- name: Upload release asset
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ${{ env.ARTIFACT_NAME }}
asset_name: ${{ env.ARTIFACT_NAME }}
asset_content_type: application/zip