Create snyk-security.yml #1
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: Single node cluster with Multipass, Rocky Linux, Kind | |
# 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 ] | |
pull_request: | |
branches: [ main ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
deploy: | |
runs-on: | |
- self-hosted | |
- multipass | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Checkout x1-cluster-profiles repository | |
uses: actions/checkout@v4 | |
with: | |
repository: intel-sandbox/x1-cluster-profiles | |
path: x1-cluster-profiles | |
token: ${{ secrets.X1_GITHUB_TOKEN }} | |
- name: Deploy a cluster on Vagrant VM | |
run: ./scripts/ci/multipass-rl-kind.sh | |
- name: Upload logs | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: logs | |
path: logs | |
if-no-files-found: ignore |