Skip to content

chore: bump version to 1.1.5 (#870) #12

chore: bump version to 1.1.5 (#870)

chore: bump version to 1.1.5 (#870) #12

Workflow file for this run

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"