From f9d25b9e0560ab93b9af64bf83d709d9f4f7a2a5 Mon Sep 17 00:00:00 2001 From: Goldy <66202304+THEGOLDENPRO@users.noreply.github.com> Date: Mon, 12 Aug 2024 18:05:11 +0100 Subject: [PATCH] fix: should checkout to main --- .github/workflows/build-parser.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-parser.yml b/.github/workflows/build-parser.yml index ca2c2b8..d234dc2 100644 --- a/.github/workflows/build-parser.yml +++ b/.github/workflows/build-parser.yml @@ -6,8 +6,6 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - name: Build agc-parser run: cargo build --release @@ -15,7 +13,9 @@ jobs: run: mv ./target/release/agc-parser . - name: Checkout to main branch. - uses: actions/checkout@v3 + uses: actions/checkout@v4 + with: + ref: main - name: Commit files id: commit