Skip to content

Commit

Permalink
[fix] pr branch name
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyBoWu committed Jan 18, 2024
1 parent e770444 commit 378c84c
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions .github/workflows/ci-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,24 +15,30 @@ jobs:
# Add timestamp
timestamp:
runs-on: ubuntu-latest
# Trigger the workflow only if the PR is from dev branch
# if: ${{ github.event.pull_request.head.repo.full_name == 'dev2' }}
outputs:
PR_BRANCH_NAME: ${{ steps.get_pr_branch_name.outputs.PR_BRANCH_NAME }}
steps:
- name: Generate timestamp
run: |
echo "TIMESTAMP=$(TZ='America/Los_Angeles' date +'%Y-%m-%d %H:%M:%S')" >> $GITHUB_ENV
echo ${{ github.event.pull_request.head.repo.full_name }}
echo ${{ github.head_ref }}
- name: Print timestamp
run: |
echo "Execution time (Pacific Time Zone): $TIMESTAMP"
- name: Get PR branch name
id: get_pr_branch_name
run: |
echo "PR_BRANCH_NAME=${{ github.head_ref }}" >> $GITHUB_OUTPUT
echo "PR_BRANCH_NAME=$PR_BRANCH_NAME"
# Parse version from main branch
parse-package-version-main:
runs-on: ubuntu-latest
needs: timestamp
# Trigger the workflow only if the PR is from dev branch
if: ${{ github.event.pull_request.head.repo.full_name == 'dev2' }}
# if: ${{ needs.timestamp.outputs.PR_BRANCH_NAME == 'dev2' }}
outputs:
MAIN_VERSION: ${{ steps.parse_package_json.outputs.MAIN_VERSION }}
steps:
Expand All @@ -54,7 +60,7 @@ jobs:
runs-on: ubuntu-latest
needs: timestamp
# Trigger the workflow only if the PR is from dev branch
if: ${{ github.event.pull_request.head.repo.full_name == 'dev2' }}
if: ${{ needs.timestamp.outputs.PR_BRANCH_NAME == 'dev2' }}
outputs:
DEV_VERSION: ${{ steps.parse_package_json.outputs.DEV_VERSION }}
steps:
Expand All @@ -73,9 +79,9 @@ jobs:
build-test-publish:
runs-on: ubuntu-latest
needs: [parse-package-version-main, parse-package-version-dev]
needs: [timestamp, parse-package-version-main, parse-package-version-dev]
# Trigger the workflow only if the PR is from dev branch, and DEV_VERSION is different from MAIN_VERSION
if: github.event.pull_request.head.repo.full_name == 'dev2' && needs.parse-package-version-main.outputs.MAIN_VERSION != needs.parse-package-version-dev.outputs.DEV_VERSION
if: ${{ needs.timestamp.outputs.PR_BRANCH_NAME == 'dev2' }} && needs.parse-package-version-main.outputs.MAIN_VERSION != needs.parse-package-version-dev.outputs.DEV_VERSION
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
Expand Down

0 comments on commit 378c84c

Please sign in to comment.