-
Notifications
You must be signed in to change notification settings - Fork 10
39 lines (33 loc) · 1.02 KB
/
auto-publish.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
name: Publish GitHub release
on:
push:
branches: [main]
jobs:
publish:
runs-on: ubuntu-latest
name: Publish GitHub release
steps:
- uses: actions/checkout@v3
- name: Get version
id: version
run: |
VERSION=$(sed -n 's/.*APIVersion = "\(.*\)".*/\1/p' stytch/config/version.go)
echo "release_tag=v$VERSION" >> $GITHUB_OUTPUT
- name: Get changed files
id: files
uses: jitterbit/get-changed-files@v1
- name: Check for config.go diff
id: diff
run: |
FOUND=0
for changed_file in ${{ steps.files.outputs.all }}; do
if [[ "$changed_file" == "stytch/config/version.go" ]]; then
FOUND=1
fi
done
echo "diff=$FOUND" >> $GITHUB_OUTPUT
- name: Create release
if: steps.diff.outputs.diff != 0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release create ${{ steps.version.outputs.release_tag }} --generate-notes