Skip to content

bump

bump #55

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
PROJECT_NAME_UNDERSCORE: vrcx-insights
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
- name: Install mingw
run: sudo apt-get install -y mingw-w64
- name: Switch to nightly
run: rustup default nightly
- name: Install x86_64-pc-windows-gnu
run: rustup target add x86_64-pc-windows-gnu
- name: Install x86_64-pc-windows-msvc
run: rustup target add x86_64-pc-windows-msvc
- name: Build
run: cargo build --verbose --release --target x86_64-pc-windows-gnu --manifest-path .github/workflows/Cargo.toml
# run: cargo build --verbose --release --target x86_64-pc-windows-gnu
- name: 'Upload Artifact'
uses: actions/upload-artifact@v3
with:
name: vrcx-insights.exe
path: '**/vrcx-insights.exe'
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: false
title: "Development Build"
files: './.github/workflows/target/x86_64-pc-windows-gnu/release/*.exe'
- name: dbg
run: pwd && ls -la && find . -name *.exe -exec echo {} \;