enricorotundo is learning GitHub Actions #3
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: Install and launch node | |
run-name: ${{ github.actor }} is learning GitHub Actions | |
on: [push] | |
jobs: | |
install-deps: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- run: cp .env.example .env | |
# override defaults | |
- run: echo "OLLAMA_MODELS=" >> .env | |
- run: echo "VLLM_MODELS=" >> .env | |
- run: bash launch.sh |