-
Notifications
You must be signed in to change notification settings - Fork 285
39 lines (39 loc) · 1.4 KB
/
deploy.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
on:
push:
branches:
- main
tags:
- "*"
jobs:
validate_canonical_match:
name: Deploy
runs-on: ubuntu-latest
steps:
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'
- uses: actions/checkout@v4
- name: Fetch changes for git diff
id: fetchdiff
run: |
if [ $GITHUB_BASE_REF ]; then
# Pull Request
git fetch origin $GITHUB_BASE_REF --depth=1
export BASE_REF=origin/$GITHUB_BASE_REF
elif [ ${{ github.event.before }} != 0000000000000000000000000000000000000000 ]; then
# Push
git fetch origin ${{ github.event.before }} --depth=1
export BASE_REF=${{ github.event.before }}
else
# This is the first commit in the branch - use the last for the compare
export BASE_REF=$(git log -n 1 --pretty=format:"%H")
fi
echo "::set-output name=BASE_REF::$BASE_REF"
- run: echo ${{steps.fetchdiff.outputs.BASE_REF}}
- run: git config --global user.email "gary@sourceauditor.com"
- run: git config --global user.name "License Publisher (maintained by Gary O'Neall)"
- run: make deploy-license-data
env:
LICENSE_LIST_GITHUB_TOKEN: ${{ secrets.LICENSE_LIST_GITHUB_TOKEN }}
INPUT_BASE_REF: ${{ steps.fetchdiff.outputs.BASE_REF }}