Update JupyterHub helm chart to 3.3.8 (#21) #92
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Multi node cluster with Vagrant, Ubuntu, Kubespray | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the main branch | |
push: | |
branches: [ main ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
deploy: | |
runs-on: | |
- self-hosted | |
- vagrant | |
steps: | |
- name: Checkout x1 repository | |
uses: actions/checkout@v4 | |
- name: Deploy X1 to Vagrant VMs | |
run: ./scripts/ci/vagrant.sh | |
- name: Upload logs | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: logs | |
path: logs | |
if-no-files-found: ignore |