Skip to content

Commit

Permalink
Change GitHub Actions workflow to use 'master' branch instead of 'mai…
Browse files Browse the repository at this point in the history
…n' for code checkout
  • Loading branch information
thkwag committed Jan 1, 2025
1 parent 422eb0f commit b6dd1e4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: main
ref: master
fetch-depth: 0

- name: Setup Git
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: main
ref: master
fetch-depth: 0

- name: Set up JDK
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: main
ref: master

- name: Create examples archive
run: |
Expand All @@ -171,15 +171,15 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: main
ref: master
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}

- name: Setup Git
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
Expand Down

0 comments on commit b6dd1e4

Please sign in to comment.