Skip to content

Commit

Permalink
Move checkout to the top and list to bottom
Browse files Browse the repository at this point in the history
  • Loading branch information
roomrys committed Sep 12, 2024
1 parent 4d2047c commit 96962bc
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/build_tensorflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,10 @@ jobs:
os-folder: osx-arm64

steps:
# Checkout the repository
- name: Checkout
uses: actions/checkout@v4

- name: Use current run id for conda package download
shell: bash -l {0}
if: env.RUN_BUILD_JOB == 'true'
Expand All @@ -116,15 +120,6 @@ jobs:
run-id: ${{ env.RUN_ID }}
github-token: ${{ secrets.GITHUB_TOKEN }}

- name: List items in current directory
run: |
ls .
ls -R build
# Checkout the repository
- name: Checkout
uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v5
with:
Expand All @@ -137,6 +132,11 @@ jobs:
environment-file: environment.tensorflow.yml
activate-environment: tf

- name: List items in current directory
run: |
ls .
ls -R build
- name: Upload to Anaconda
env:
ANACONDA_PASSWORD: ${{ secrets.ANACONDA_PASSWORD }}
Expand Down

0 comments on commit 96962bc

Please sign in to comment.