-
Notifications
You must be signed in to change notification settings - Fork 4
59 lines (52 loc) · 1.6 KB
/
ubuntu.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
51
52
53
54
55
56
57
58
59
name: Ubuntu
on:
push:
branches: [master]
paths-ignore:
- 'README.md'
- 'Makefile'
- 'Dockerfile'
- 'install/macos/**'
- '.chezmoiscripts/macos/**'
- 'dot_tmux.conf.d/os/macos.conf'
- 'tests/install/macos/**'
pull_request:
branches: [master]
paths-ignore:
- 'README.md'
- 'Makefile'
- 'Dockerfile'
- 'install/macos/**'
- '.chezmoiscripts/macos/**'
- 'dot_tmux.conf.d/os/macos.conf'
- 'tests/install/macos/**'
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
strategy:
matrix:
system: [server, client]
runs-on: ubuntu-latest
steps:
- name: Setup dotfiles
env:
EMAIL_ADDRESS: ${{ secrets.EMAIL_ADDRESS }}
SYSTEM: ${{ matrix.system }}
DOTFILES_DEBUG: 1
EVENT_NAME: ${{ github.event_name }}
run: |
if [ "${EVENT_NAME}" == "push" ]; then
BRANCH_NAME="${{ github.ref_name }}"
elif [ "${EVENT_NAME}" == "pull_request" ]; then
BRANCH_NAME="${{ github.head_ref }}"
fi
export BRANCH_NAME
URL="https://raw.githubusercontent.com/shunk031/dotfiles/${BRANCH_NAME}/setup.sh"
echo "Download setup.sh from ${URL}"
printf '${EMAIL_ADDRESS}\n${SYSTEM}\n' | bash -c "$(wget -qO - $URL)"
# │ │
# │ └─ Simulate inputting an system arcitecture into the config.
# └─ Simulate inputting an email address into the config.