diff --git a/.github/workflows/deploy-dev.yml b/.github/workflows/deploy-dev.yml index 5746d8b..c3cb721 100644 --- a/.github/workflows/deploy-dev.yml +++ b/.github/workflows/deploy-dev.yml @@ -90,12 +90,11 @@ jobs: run: conda pack - name: Upload Artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: - name: payu-dev + name: ${{ steps.payu.outputs.name }} if-no-files-found: error - path: | - ${{ steps.payu.outputs.name }}.tar.gz + path: ${{ steps.payu.outputs.name }}.tar.gz deploy: runs-on: ubuntu-latest @@ -106,9 +105,9 @@ jobs: NAME: ${{ needs.pack.outputs.name }} VERSION: ${{ needs.pack.outputs.version }} steps: - - uses: actions/download-artifact@v3.0.2 + - uses: actions/download-artifact@v4 with: - name: payu-dev + name: ${{ env.NAME }} - uses: access-nri/actions/.github/actions/setup-ssh@main id: ssh diff --git a/env-dev.yml b/env-dev.yml index 08b2ecb..742045a 100644 --- a/env-dev.yml +++ b/env-dev.yml @@ -1,13 +1,13 @@ name: payu-dev channels: - accessnri + - coecms - conda-forge dependencies: - python==3.10 # Use latest changes from payu's master branch - pip: - git+https://github.com/payu-org/payu.git@master - - mule @ git+https://github.com/metomi/mule@cce4b99c7046217b1ec1192118a786636e0d8e54#subdirectory=mule - f90nml - conda-lock - conda-pack @@ -16,4 +16,5 @@ dependencies: - nco - pytest - openssh>=8.3 - - xarray \ No newline at end of file + - xarray + - mule \ No newline at end of file