From 34b3eb3ea7bc1d4309bb68c0ee31c1d8fb4c307b Mon Sep 17 00:00:00 2001 From: SArpnt <36542932+SArpnt@users.noreply.github.com> Date: Thu, 30 Sep 2021 20:46:50 -0400 Subject: [PATCH] checkout on release action --- .github/workflows/CD.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CD.yml b/.github/workflows/CD.yml index 38cd08d9..2baa57f4 100644 --- a/.github/workflows/CD.yml +++ b/.github/workflows/CD.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Branch - uses: actions/checkout@v2-beta # use either @v2-beta or @master. Eventually there will be a @v2 tag. + uses: actions/checkout@v2 - name: Who am I? run: whoami @@ -46,7 +46,7 @@ jobs: run: whoami - name: Checkout Branch - uses: actions/checkout@v2-beta # use either @v2-beta or @master. Eventually there will be a @v2 tag. + uses: actions/checkout@v2 - name: Install Dependencies run: | @@ -93,7 +93,7 @@ jobs: GLFW_ROOT: C:\lib\glfw-3.3.4 steps: - name: Checkout Branch - uses: actions/checkout@v2-beta # use either @v2-beta or @master. Eventually there will be a @v2 tag. + uses: actions/checkout@v2 - run: choco install wget unzip 7zip -y - name: Install Dependencies @@ -136,6 +136,9 @@ jobs: runs-on: ubuntu-latest needs: [Debian, Arch, Windows] steps: + - name: Checkout Branch + uses: actions/checkout@v2 + # ---------------- # Get Artifacts # ----------------