Limit corner radius in draw_rounded function to half of the minimum d… #9
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 | |
jobs: | |
now: | |
runs-on: windows-2022 | |
permissions: | |
contents: write | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Build | |
if: runner.os == 'Windows' | |
shell: pwsh | |
run: | | |
.\build_shaders.bat | |
tar -czf RNDX.tar.gz shaders | |
copy RNDX.tar.gz C:\RNDX.tar.gz | |
copy rndx.lua C:\rndx.lua | |
- name: Release | |
if: runner.os == 'Windows' | |
uses: ncipollo/release-action@v1 | |
with: | |
tag: 1 | |
allowUpdates: true | |
artifacts: | | |
C:\RNDX.tar.gz | |
C:\rndx.lua |