-
Notifications
You must be signed in to change notification settings - Fork 7
113 lines (99 loc) · 3.28 KB
/
publish-android.yml
File metadata and controls
113 lines (99 loc) · 3.28 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
name: Publish Android
on:
workflow_dispatch:
inputs:
package:
description: 'Select the package you want to publish'
required: true
default: 'dialtone-tokens'
type: 'choice'
options:
- dialtone-tokens
- dialtone-icons
push:
branches:
- production
paths:
- '**/gradle.properties'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
filter-actions:
runs-on: ubuntu-latest
outputs:
packages: ${{ github.event_name == 'push' && steps.filter-path.outputs.changes || steps.filter-input.outputs.package }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Filter actions by path
if: ${{ github.event_name == 'push' }}
uses: dorny/paths-filter@v3
id: filter-path
with:
base: ${{ github.ref }}
list-files: 'json'
filters: |
dialtone-icons:
- 'packages/dialtone-icons/android/gradle.properties'
dialtone-tokens:
- 'packages/dialtone-tokens/gradle.properties'
- name: Filter actions by input
if: ${{ github.event_name == 'workflow_dispatch' }}
id: filter-input
run: |
echo 'package=["${{ github.event.inputs.package }}"]' >> $GITHUB_OUTPUT
check-dialpad-member:
runs-on: ubuntu-latest
steps:
# Will prevent the rest of the steps from running on fail
- name: Check if user is a dialpad member
uses: octokit/request-action@v2.x
with:
route: GET /orgs/dialpad/members/${{ github.actor }}
env:
GITHUB_TOKEN: ${{ secrets.DIALTONE_CI_TOKEN }}
publish:
needs: [ check-dialpad-member, filter-actions ]
if: ${{ github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && needs.filter-actions.outputs.packages != '[]') }}
strategy:
matrix:
package: ${{ fromJSON(needs.filter-actions.outputs.packages) }}
runs-on: ubuntu-latest
permissions:
packages: write
steps:
- name: Set working Dir
run: |
echo "WORKING_DIR=${{ matrix.package == 'dialtone-icons' && './packages/dialtone-icons/android' || './packages/dialtone-tokens' }}" >> $GITHUB_ENV
- name: Checkout
uses: actions/checkout@v4
- name: Use pnpm
uses: pnpm/action-setup@v3
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: "pnpm"
registry-url: "https://npm.pkg.github.com"
scope: "dialpad"
env:
NODE_AUTH_TOKEN: ${{ github.token }}
- name: Install dependencies
shell: bash
run: pnpm install --frozen-lockfile
- name: Setup Java
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'temurin'
cache: 'gradle'
cache-dependency-path: |
${{ env.WORKING_DIR }}/*.gradle*
${{ env.WORKING_DIR }}/**/gradle-wrapper.properties
- name: Build ${{ matrix.package }}
run: pnpm nx run ${{ matrix.package }}:build:android
- name: Publish ${{ matrix.package }}
working-directory: ${{ env.WORKING_DIR }}
env:
GITHUB_USER: braddialpad
run: ./gradlew publish