This repository has been archived on 2023-11-06. You can view files and clone it, but cannot push or open issues or pull requests.
beatsaber-overlay/.drone.yml

38 lines
646 B
YAML
Raw Normal View History

2022-10-26 10:12:57 +00:00
kind: pipeline
type: docker
name: default
2022-10-26 11:01:09 +00:00
ports: [3001]
2022-10-26 10:12:57 +00:00
steps:
2022-10-26 20:20:32 +00:00
# Other branches
- name: install depends
image: node:18
commands:
- npm install
when:
branch:
exclude:
- master
- name: test
image: node:18
commands:
- npm run lint
when:
branch:
exclude:
- master
# Main branches
2022-10-26 11:16:49 +00:00
- name: docker
2022-10-26 11:15:56 +00:00
image: plugins/docker
settings:
2022-10-26 11:16:49 +00:00
username:
from_secret: dockerhub_username
password:
from_secret: dockerhub_password
2022-10-26 11:15:56 +00:00
repo: fascinated/beatsaber-overlay
2022-10-26 11:16:49 +00:00
tags: latest
2022-10-26 20:20:32 +00:00
when:
branch:
- main