Skip to content

Commit

Permalink
Create pre-release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
zzeneg committed Jan 21, 2024
1 parent 62fc636 commit ebbbc25
Show file tree
Hide file tree
Showing 4 changed files with 67 additions and 22 deletions.
67 changes: 67 additions & 0 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
---
name: 'pre-release'

on:
push:
branches: ['main']

env:
CARGO_TERM_COLOR: always

jobs:
build:
name: Build and Publish
runs-on: windows-latest

steps:
- uses: actions/checkout@v3

- name: Build
run: cargo build --verbose

- name: Run tests
run: cargo test --verbose

- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true

- name: Install cargo-make
uses: davidB/rust-cargo-make@v1

- name: Publish to dist
uses: actions-rs/cargo@v1
with:
command: make
args: dist

- uses: actions/upload-artifact@v4
with:
path: dist
name: dist

pre-release:
name: Pre-Release
needs: build
runs-on: ubuntu-latest
permissions:
contents: 'write'
packages: 'write'
pull-requests: 'read'

steps:
- name: Download
uses: actions/download-artifact@v4
with:
name: dist
path: dist

- name: Create Release
uses: marvinpinto/action-automatic-releases@latest
with:
repo_token: '${{ secrets.GITHUB_TOKEN }}'
automatic_release_tag: 'latest'
prerelease: true
title: 'Latest Build'
files: dist/**/*
22 changes: 0 additions & 22 deletions .github/workflows/test.yml

This file was deleted.

Binary file removed dist/qmk-hid-host.exe
Binary file not shown.
Binary file removed dist/qmk-hid-host.silent.exe
Binary file not shown.

0 comments on commit ebbbc25

Please sign in to comment.