Setup continuous deployment
This commit is contained in:
23
.gitea/workflows/cd.yaml
Normal file
23
.gitea/workflows/cd.yaml
Normal file
@@ -0,0 +1,23 @@
|
||||
name: Continuous Deployment
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- v*
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
runs-on: linux
|
||||
steps:
|
||||
- name: Checkout repo
|
||||
uses: actions/checkout@v5
|
||||
- name: Run linter
|
||||
run: make lint
|
||||
|
||||
deploy:
|
||||
runs-on: linux
|
||||
steps:
|
||||
- name: Checkout repo
|
||||
uses: actions/checkout@v5
|
||||
- name: Deploy project
|
||||
run: make deploy
|
||||
Reference in New Issue
Block a user