Skip to content

Commit

Permalink
chore([no ci]): Synced file(s) with salesforcecli/leif (#471)
Browse files Browse the repository at this point in the history
* chore([no ci]): Created local '.github/workflows/manualRelease.yml' from remote 'templates/github/manualRelease.yml'

* chore([no ci]): Synced local '.gitignore' with remote 'templates/git/.gitignore'
  • Loading branch information
SF-CLI-BOT committed Sep 22, 2022
1 parent 3ce8c1d commit b660b2f
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/manualRelease.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: manual release

on:
workflow_dispatch:

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.SF_CLI_BOT_GITHUB_TOKEN }}
- name: Conventional Changelog Action
id: changelog
uses: TriPSs/conventional-changelog-action@d360fad3a42feca6462f72c97c165d60a02d4bf2
# overriding some of the basic behaviors to just get the changelog
with:
git-user-name: SF-CLI-BOT
git-user-email: alm-cli@salesforce.com
github-token: ${{ secrets.SF_CLI_BOT_GITHUB_TOKEN }}
output-file: false
# always do the release, even if there are no semantic commits
skip-on-empty: false
tag-prefix: ''
- uses: notiz-dev/github-action-json-property@2192e246737701f108a4571462b76c75e7376216
id: packageVersion
with:
path: 'package.json'
prop_path: 'version'
- name: Create Github Release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.SF_CLI_BOT_GITHUB_TOKEN }}
with:
tag_name: ${{ steps.packageVersion.outputs.prop }}
release_name: ${{ steps.packageVersion.outputs.prop }}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,5 @@ node_modules
# os specific files
.DS_Store
.idea

oclif.manifest.json

0 comments on commit b660b2f

Please sign in to comment.