generated from Kurocado-Studio/styleguide-remix-template
-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (43 loc) · 1.13 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#
# Made with ❤️ and adobo by Kurocado Studio
# Copyright (c) 2024. All Rights Reserved.
#
# Learn more about Kurocado Studio: {@link https://www.kurocado.studio}
#
# Explore our open-source projects: {@link https://github.com/kurocado-studio}
#
name: CI/CD Pipeline
permissions:
contents: write
id-token: write
pages: write
pull-requests: write
on:
pull_request:
push:
branches:
- main
- dev
jobs:
lint:
uses: kurocado-studio/styleguide/.github/workflows/workflow.lint.yml@main
secrets: inherit
test:
needs: lint
uses: kurocado-studio/styleguide/.github/workflows/workflow.test.yml@main
secrets: inherit
document:
needs: test
uses: kurocado-studio/styleguide/.github/workflows/workflow.document.yml@main
secrets: inherit
release:
needs: document
uses: kurocado-studio/styleguide/.github/workflows/workflow.release.yml@main
secrets: inherit
with:
branch_name: ${{ github.ref }}
deploy:
needs: release
uses: kurocado-studio/styleguide/.github/workflows/workflow.deploy.yml@main
secrets:
fly_api_token: ${{ secrets.FLY_API_TOKEN }}