-
-
Notifications
You must be signed in to change notification settings - Fork 4
34 lines (28 loc) · 864 Bytes
/
release.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
name: Release
on:
release:
types: [published]
permissions: {}
jobs:
release:
name: Release
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v3.5.3
- name: Set version number
shell: bash
run: |
yq -i -o json '.version="${{ github.event.release.tag_name }}"' \
"${{ github.workspace }}/custom_components/playstation_network/manifest.json"
- name: ZIP integration directory
shell: bash
run: |
cd "${{ github.workspace }}/custom_components/playstation_network"
zip psn.zip -r ./
- name: Upload ZIP file to release
uses: softprops/action-gh-release@v0.1.15
with:
files: ${{ github.workspace }}/custom_components/playstation_network/psn.zip