From b6dd1e4ec7fb2c2e1a2c5105e412393ec94c42b6 Mon Sep 17 00:00:00 2001 From: Taehwan Kwag Date: Wed, 1 Jan 2025 21:22:35 +0900 Subject: [PATCH] Change GitHub Actions workflow to use 'master' branch instead of 'main' for code checkout --- .github/workflows/release.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ec16615..9984bf7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,7 +23,7 @@ jobs: - name: Checkout code uses: actions/checkout@v4 with: - ref: main + ref: master fetch-depth: 0 - name: Setup Git @@ -106,7 +106,7 @@ jobs: - name: Checkout code uses: actions/checkout@v4 with: - ref: main + ref: master fetch-depth: 0 - name: Set up JDK @@ -145,7 +145,7 @@ jobs: - name: Checkout code uses: actions/checkout@v4 with: - ref: main + ref: master - name: Create examples archive run: | @@ -171,7 +171,7 @@ jobs: - name: Checkout code uses: actions/checkout@v4 with: - ref: main + ref: master fetch-depth: 0 token: ${{ secrets.GITHUB_TOKEN }} @@ -179,7 +179,7 @@ jobs: run: | git config --global user.name 'github-actions[bot]' git config --global user.email 'github-actions[bot]@users.noreply.github.com' - git checkout main + git checkout master - name: Get Changes id: get_changes