Skip to content

chore: configure release workflows #1

chore: configure release workflows

chore: configure release workflows #1

Workflow file for this run

name: "tagged-release"

Check failure on line 1 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

Invalid `steps` value - steps should be list of `uses` or `run` items
on:
push:
tags:
- "v*"
workflow_dispatch:
jobs:
tagged-release:
name: "Tagged Release"
runs-on: "ubuntu-latest"
steps:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Setup NodeJS
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Build WebUI
run: cd webui && npm install && npm run build
- name: Build Binary
run: go build .
- name: Rename Files
run: |
mv resticui resticui-linux-amd64
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
files: |
LICENSE.txt
resticui