diff --git a/.github/workflows/commit.yaml b/.github/workflows/commit.yaml index 150948a..4e8545b 100644 --- a/.github/workflows/commit.yaml +++ b/.github/workflows/commit.yaml @@ -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: 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 "CURRENT_VERSION=$(node -p "require('./package.json').version")" >> $GITHUB_ENV echo "{ \"commit\": \"$COMMIT_HASH\" , \"version\": \"$CURRENT_VERSION\" }" > app/commit.json - name: Commit and push the update diff --git a/.github/workflows/update-stable.yml b/.github/workflows/update-stable.yml index e6fc2e5..d930fbd 100644 --- a/.github/workflows/update-stable.yml +++ b/.github/workflows/update-stable.yml @@ -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 diff --git a/app/commit.json b/app/commit.json index d46475e..b3f011d 100644 --- a/app/commit.json +++ b/app/commit.json @@ -1 +1 @@ -{ "commit": "de2cb43d170033c43a6cf436af02e033f66a7e4d" , "version": "" } +{ "commit": "49b02dd885919e24a201f07b1a7b0fd0371b4f85" , "version": "0.0.1" }