Skip to content

Ga upload build

Ga upload build #109

Workflow file for this run

name: Windows build
on:
pull_request:
branches: [ "master" ]
jobs:
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Checkout aquamarine repo
uses: actions/checkout@v3
with:
repository: MaksymT17/aqumarine
ref: ${{ github.head_ref }}
path: aqumarine
- name: Build artifacts with Cmake
run: |
cd aquamarine &&
echo "removing existing build folder..."
rm -rf build/ &&
mkdir build &&
echo "preparing new build with cmake..." &&
cd build/ &&
cmake .. &&
cmake --build . &&
echo "Build complete!"
shell: bash
- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: aquamarine_build_Windows
path: aquamarine/build/