Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add workflow to publish release on GitHub #5036

Merged
merged 2 commits into from
Sep 18, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Publish a release

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

View workflow job for this annotation

GitHub Actions / yaml-lint

1:1 [document-start] missing document start "---"

on:
push:
tags:
- "*"

Check failure on line 6 in .github/workflows/publish-release.yml

View workflow job for this annotation

GitHub Actions / yaml-lint

6:9 [quoted-strings] string value is not quoted with single quotes

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Release
uses: softprops/action-gh-release@v1
with:
generate_release_notes: true

Check failure on line 18 in .github/workflows/publish-release.yml

View workflow job for this annotation

GitHub Actions / yaml-lint

18:39 [new-line-at-end-of-file] no new line character at the end of file
Loading