chore: bump version to 1.0.2 #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 Community Shaders and addons | |
on: | |
push: | |
tags: | |
- 'v*' | |
workflow_dispatch: | |
permissions: | |
contents: write | |
jobs: | |
compile: | |
name: build plugin and addons | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- uses: ilammy/[email protected] | |
- uses: lukka/[email protected] | |
with: | |
vcpkgJsonGlob: vcpkg.json | |
- name: cmake configure | |
run: cmake -S . --preset=ALL --check-stamp-file "build\CMakeFiles\generate.stamp" | |
- name: cmake build | |
run: cmake --build build/ALL --config Release | |
- name: create a tagged release and upload the archive | |
uses: ncipollo/release-action@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
name: Community Shaders ${{ github.ref_name }} | |
draft: true | |
tag: ${{ github.ref_name }} | |
artifacts: "${{ github.workspace }}/dist/*.7z" |