Forget trying to automate releases for now, only auto-build for tags #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
push: | |
tags: | |
- '**' | |
workflow_dispatch: | |
inputs: null | |
jobs: | |
build: | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup MSBuild | |
uses: microsoft/[email protected] | |
with: | |
vs-version: 16 | |
msbuild-architecture: x64 | |
- name: Navigate to Workspace | |
run: cd $GITHUB_WORKSPACE | |
- name: 'Run build script' | |
run: cmd /C build.bat | |
- name: "Upload artifacts: libav" | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ffmpeg_libav | |
path: output/recorder/libav/* | |
- name: "Upload artifacts: libav_pdb" | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ffmpeg_libav_pdb | |
path: output/recorder/libav_pdb/* | |
- name: "Upload artifacts: tools" | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ffmpeg_tools | |
path: output/recorder/tools/* |