Bump @types/react from 18.3.11 to 18.3.12 in /resources #175
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: Go | |
on: | |
push: | |
branches: [ main ] | |
# Publish semver tags as releases. | |
tags: [ 'v*.*.*' ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ^1.23 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- uses: actions/checkout@v4 | |
- name: Setup Task | |
run: curl -sL https://taskfile.dev/install.sh | sh | |
- name: Build using Taskfile.yml | |
run: ./bin/task build | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: compiled-application-amd64-ubuntu | |
path: out/* | |
release: | |
runs-on: ubuntu-latest | |
# Only create a release if a new tags has been pushed: https://stackoverflow.com/a/58478262/4106848 | |
if: startsWith(github.ref, 'refs/tags/v') | |
steps: | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ^1.22 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- uses: actions/checkout@v4 | |
- name: Setup Task | |
run: curl -sL https://taskfile.dev/install.sh | sh | |
- name: Build using Taskfile.yml | |
run: ./bin/task release | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: compiled-application-amd64-ubuntu | |
path: out/* | |
- uses: softprops/action-gh-release@v2 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
files: | | |
out/update_linux_amd64 | |
out/update_linux_arm | |
out/update_windows_amd64.exe | |
draft: true | |
name: Release ${{ github.ref }} | |
body: | | |
Changes in this Release | |
- First Change | |
- Second Change | |
- [ ] You've listed all important changes / pull requests |