Skip to content

Commit

Permalink
again small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hetulbhatt committed Jun 16, 2023
1 parent 496a30b commit 5b6189f
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 35 deletions.
34 changes: 0 additions & 34 deletions .github/workflows/build.yml

This file was deleted.

29 changes: 28 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,38 @@
name: Release
name: Create Release

on:
push:
branches:
- main

jobs:
build:
runs-on: windows-latest

strategy:
matrix:
architecture:
- x86
- x64
- ARM
- ARM64

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up environment
run: echo "Running on Windows - ${{ matrix.architecture }}"

- name: Build
run: g++ -static -std=c++17 -I./include -o KeyFlow-${{ matrix.architecture }}.exe src/main.cpp

- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: KeyFlow-windows-${{ matrix.architecture }}-executable
path: KeyFlow-${{ matrix.architecture }}.exe

create_release:
needs: build
runs-on: windows-latest
Expand Down

0 comments on commit 5b6189f

Please sign in to comment.