Skip to content

ci(github/workflows): build & release pipelines created #3

ci(github/workflows): build & release pipelines created

ci(github/workflows): build & release pipelines created #3

Workflow file for this run

name: Create 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

(Line: 9, Col: 3): The workflow must contain at least one job with no dependencies.
on:
push:
tags:
- "v*.*.*"
jobs:
release:
runs-on: ubuntu-slim
permissions:
contents: write
needs: build
steps:
- uses: actions/checkout@v5
- name: Download Build Artifacts
uses: actions/download-artifact@v3
with:
name: tetris-artifact
path: ./artifact
- name: Create Release
uses: ncipollo/release-action@v1
with:
tag: ${{ github.ref_name }}
name: ${{ github.ref_name }}
body: "Automated release for tag ${{ github.ref_name }}"
artifacts: |
./artifact/tetris
./artifact/tetris.runfiles/
draft: false
prerelease: false