Skip to content

Commit

Permalink
ci: add name to github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Pradumnasaraf committed Jun 7, 2023
1 parent c1c27b4 commit 21ca1df
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/greetings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ on:

jobs:
welcome:
name: Welcome Step
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,14 @@ on:
- main

jobs:
create-tag:
create-tag:
name: Creating tag
runs-on: ubuntu-latest
steps:
- name: Checkout the repo
uses: actions/checkout@v3

- name: conventional Changelog Action
- name: Creating Changelog and Release
id: changelog
uses: TriPSs/conventional-changelog-action@v3
with:
Expand All @@ -23,6 +24,7 @@ jobs:
tag: ${{ steps.changelog.outputs.tag }}

goreleasers:
name: GoReleaser
runs-on: ubuntu-latest
needs: create-tag
# only run if the tag is not empty
Expand Down

0 comments on commit 21ca1df

Please sign in to comment.