Skip to content

Commit

Permalink
Add workflow to publish release on GitHub
Browse files Browse the repository at this point in the history
Signed-off-by: Sayali Gaikawad <gaiksaya@amazon.com>
  • Loading branch information
gaiksaya committed Sep 17, 2024
1 parent 1ffb57f commit 71f34e9
Showing 1 changed file with 18 additions and 0 deletions.
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

0 comments on commit 71f34e9

Please sign in to comment.