Skip to content

Commit

Permalink
Fix checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
wh201906 committed May 18, 2023
1 parent 38582c0 commit a1921fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ jobs:
runs-on: ubuntu-22.04
outputs:
refs: ${{ steps.load_step.outputs.refs }}
standalones: ${{ steps.load_step.outputs.standalones }}
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down Expand Up @@ -69,8 +68,8 @@ jobs:
cd pm3
git clone https://github.com/RfidResearchGroup/proxmark3.git --filter=blob:none --no-checkout
cd proxmark3
git checkout $MATRIX_REF
echo $MATRIX_REF
git checkout ${{ env.MATRIX_REF }}
echo ${{ env.MATRIX_REF }}
- name: ProxSpace autobuild
working-directory: C:/ProxSpace
Expand Down
2 changes: 1 addition & 1 deletion loadConf.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
confFile.close()

with open(environ["GITHUB_OUTPUT"], "a") as f:
# the keys there matches the keys in jobs->load_conf->outputs of build.yml
# the keys there matches the keys in jobs->load_conf->outputs of build.yml
f.write("refs=" + str(conf["refs"]) + "\n")

0 comments on commit a1921fe

Please sign in to comment.