dashboard: add logo #43
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: tob CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
go-version: ['1.16.x', '1.17.x', '1.18.x', '1.19.x', '1.20.x'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Go ${{ matrix.go-version }} | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Use Node 18 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Install Ubuntu dependecies | |
run: bash ./scripts/install_ubuntu_deps | |
- name: Run packaging | |
run: bash ./scripts/package.sh 0.0.0.dummy |