Skip to content

Commit

Permalink
Merge pull request #773 from thecodacus/workflowfix
Browse files Browse the repository at this point in the history
chore: Workflow fix
  • Loading branch information
thecodacus authored Dec 16, 2024
2 parents 00d871b + e601da9 commit 49b02dd
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/commit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,17 @@ jobs:
- name: Checkout the code
uses: actions/checkout@v3

- name: Get the latest commit hash
run: echo "COMMIT_HASH=$(git rev-parse HEAD)" >> $GITHUB_ENV


- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'


- name: Update commit file
- name: Get the latest commit hash
run: |
echo "COMMIT_HASH=$(git rev-parse HEAD)" >> $GITHUB_ENV
echo "CURRENT_VERSION=$(node -p "require('./package.json').version")" >> $GITHUB_ENV
- name: Update commit file
run: |
echo "{ \"commit\": \"$COMMIT_HASH\" , \"version\": \"$CURRENT_VERSION\" }" > app/commit.json
- name: Commit and push the update
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/update-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,10 +158,13 @@ jobs:
echo "$CHANGELOG_CONTENT" >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
- name: Commit and Tag Release
- name: Get the latest commit hash and version tag
run: |
echo "COMMIT_HASH=$(git rev-parse HEAD)" >> $GITHUB_ENV
echo "CURRENT_VERSION=$(node -p "require('./package.json').version")" >> $GITHUB_ENV
- name: Commit and Tag Release
run: |
git pull
echo "{ \"commit\": \"$COMMIT_HASH\" , \"version\": \"$CURRENT_VERSION\" }" > app/commit.json
git add package.json pnpm-lock.yaml changelog.md app/commit.json
Expand Down
2 changes: 1 addition & 1 deletion app/commit.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{ "commit": "de2cb43d170033c43a6cf436af02e033f66a7e4d" , "version": "" }
{ "commit": "47a1def87778d223b21b8468fcfd974b9498be5a" }

0 comments on commit 49b02dd

Please sign in to comment.