Skip to content

Fixing build workflow #21

Fixing build workflow

Fixing build workflow #21

Workflow file for this run

name: Tag
on:
push:
tags:
- "*"
jobs:
build:
name: Build
uses: ./.github/workflows/build.yml
release:
name: Release
needs: [build]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Download artifacts
uses: actions/download-artifact@v3
with:
path: assets
- name: Create Release
run: gh release create --generate-notes ${GITHUB_REF#refs/tags/} assets/***/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}