Skip to content

Commit

Permalink
ci: Remove some of the warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
frascuchon committed Apr 30, 2024
1 parent 60138f5 commit 7023a20
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/argilla-frontend.workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
uses: actions/checkout@v3

- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 20

Expand All @@ -50,7 +50,7 @@ jobs:
npm run build
- name: Upload package artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: argilla-frontend
path: argilla-frontend/dist
Expand All @@ -72,9 +72,8 @@ jobs:
uses: ./.github/workflows/argilla.deploy-environment.yml
needs: build_dev_docker_image
if: |
!cancelled() &&
needs.build_dev_docker_image.result == 'success' &&
github.event_name == 'pull_request' && github.event.pull_request.draft == false
!cancelled() &&
needs.build_dev_docker_image.result == 'success'
with:
image-name: argilla/argilla-quickstart-for-dev
image-version: ${{ needs.build_dev_docker_image.outputs.version }}
Expand Down

0 comments on commit 7023a20

Please sign in to comment.