-
Notifications
You must be signed in to change notification settings - Fork 5
45 lines (39 loc) · 1.6 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
name: "tagged-release"
on:
push:
paths:
- 'manifest.json'
jobs:
tagged-release:
name: "Tagged Release"
runs-on: "ubuntu-latest"
steps:
- name: "Checkout Repository"
uses: "actions/checkout@v4"
with:
fetch-depth: 2 # Ensure we can get the previous version
- name: "Read versions from manifest"
id: read-versions
run: |
version=$(sed -n 's/.*"version": "\(.*\)",/\1/p' manifest.json)
echo "version=$version" >> "$GITHUB_OUTPUT"
echo "Version: $version"
previous_version=$(git show HEAD^:manifest.json | sed -n 's/.*"version": "\(.*\)",/\1/p')
echo "previous-version=previous_version$" >> "$GITHUB_OUTPUT"
echo "Previous version: $previous_version"
- name: "Zip release files" # Only if the version has been updated
if: ${{ steps.read-versions.outputs.version != steps.read-versions.outputs.previous-version }}
run: |
echo "Creating a release zip file..."
zip -r scriptio-release.zip icons/ main.js manifest.json preload.js renderer.js settings.html
echo "Done!"
- name: "Create Release"
if: ${{ steps.read-versions.outputs.version != steps.read-versions.outputs.previous-version }}
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
automatic_release_tag: "v${{ steps.read-versions.outputs.version }}"
title: "v${{ steps.read-versions.outputs.version }}"
files: |
scriptio-release.zip