Skip to content

Commit

Permalink
comment out changelog temporarily
Browse files Browse the repository at this point in the history
  • Loading branch information
filfreire committed Feb 26, 2024
1 parent 98c7df6 commit 4eb2d38
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/release-start.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout branch
uses: actions/checkout@v4
uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
ref: develop
fetch-depth: 0

- name: Setup Node
uses: actions/setup-node@v4
uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
cache: 'npm'
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
branch: ${{ env.RELEASE_BRANCH }}

- name: Checkout branch
uses: actions/checkout@v4
uses: actions/checkout@v3
with:
ref: ${{ env.RELEASE_BRANCH }}
persist-credentials: false
Expand Down Expand Up @@ -102,15 +102,15 @@ jobs:
- name: Git Commit
run: git commit -am "Bump app version to ${{ env.RELEASE_VERSION }}"

- name: Update CHANGELOG
id: changelog
uses: requarks/changelog-action@v1
with:
token: ${{ secrets.RELEASE_GH_TOKEN }}
tag: ${{ github.sha }}
# - name: Update CHANGELOG
# id: changelog
# uses: requarks/changelog-action@v1
# with:
# token: ${{ secrets.RELEASE_GH_TOKEN }}
# tag: ${{ github.ref_name }}

- name: Git Commit Changelog
run: git commit -am "update CHANGELOG.md for ${{ env.RELEASE_VERSION }} [skip ci]"
# - name: Git Commit Changelog
# run: git commit -am "update CHANGELOG.md for ${{ env.RELEASE_VERSION }} [skip ci]"

- name: Git Push changes
run: |
Expand Down

0 comments on commit 4eb2d38

Please sign in to comment.