-
Notifications
You must be signed in to change notification settings - Fork 1.1k
50 lines (41 loc) · 1.21 KB
/
publish-template.yaml
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
name: Publish Templates
on:
push:
branches:
- main
env:
FORCE_COLOR: 3
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
publish_template:
name: Publish Template
runs-on: ubuntu-latest
defaults:
run:
shell: bash
working-directory: internal
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up pnpm
uses: pnpm/action-setup@v2.2.2
with:
version: 8.2.0
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18.16
cache: pnpm
- name: Install pnpm Dependencies
run: pnpm i --frozen-lockfile --ignore-scripts
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v18.7
- name: Publish template
run: pnpm update-templates "${{ steps.changed-files.outputs.all_changed_files }}"
env:
CONTENTFUL_ACCESS_TOKEN: ${{ secrets.CONTENTFUL_ACCESS_TOKEN }}
CONTENTFUL_SPACE_ID: ${{ secrets.CONTENTFUL_SPACE_ID }}
CONTENTFUL_ENVIRONMENT: ${{ secrets.CONTENTFUL_ENVIRONMENT }}
CONTENTFUL_CONTENT_TYPE: ${{ secrets.CONTENTFUL_CONTENT_TYPE }}