Skip to content

Bump dawidd6/action-download-artifact from 3 to 6 in /.github/workflows #272

Bump dawidd6/action-download-artifact from 3 to 6 in /.github/workflows

Bump dawidd6/action-download-artifact from 3 to 6 in /.github/workflows #272

Workflow file for this run

name: Build
on:
push:
branches:
- "**"
pull_request:
branches: [ "main", "dev" ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- uses: seanmiddleditch/gha-setup-ninja@master
- uses: ilammy/msvc-dev-cmd@v1
with:
arch: amd64
- name: Configure CMake
run: cmake -G "Ninja Multi-Config" -B build -S ${{ github.workspace }}
- name: Build
run: cmake --build build --target stfc-community-patch -j --config Release
- name: Package
run: |
mv build/Release/stfc-community-patch.dll version.dll
- uses: actions/upload-artifact@v2
with:
name: stfc-community-patch
path: version.dll