Skip to content

Commit

Permalink
Improve Node.js example (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
MiguelRipoll23 authored May 20, 2023
1 parent dc1f7cc commit a481781
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions examples/nodejs.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Create version
name: Bump version

on:
workflow_dispatch:
Expand All @@ -18,8 +18,8 @@ on:
description: New build for prerelease

jobs:
update-version:
name: Update version name
bump-version:
name: Bump version
runs-on: ubuntu-latest
permissions:
contents: write
Expand All @@ -29,13 +29,13 @@ jobs:
- name: Checkout branch
uses: actions/checkout@v3

- name: Generate tag name
- name: Generate tag
uses: MiguelRipoll23/[email protected]
id: generate-tag-name
with:
channel: ${{ inputs.channel }}

- name: Update version name
- name: Update version
uses: reedyuk/[email protected]
with:
version: ${{ steps.generate-tag-name.outputs.tag-name }}
Expand All @@ -46,6 +46,6 @@ jobs:
branch: version/${{ steps.generate-tag-name.outputs.tag-name }}
commit-message: ${{ steps.generate-tag-name.outputs.tag-name }}
title: Bump version to ${{ steps.generate-tag-name.outputs.tag-name }}
body: Automated pull request triggered by a new version update.
body: Automated pull request triggered by a new release.
labels: new-release,ignore-for-release
draft: true

0 comments on commit a481781

Please sign in to comment.