Compare commits
4 Commits
dev-2023-1
...
develop
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
29c564380d
|
||
|
|
a8d01fd9bf
|
||
|
|
402c6da5df
|
||
|
|
f9fefaf404
|
@@ -42,7 +42,9 @@ jobs:
|
|||||||
title: dev-${{ steps.date.outputs.date }}
|
title: dev-${{ steps.date.outputs.date }}
|
||||||
tag_name: dev-${{ steps.date.outputs.date }}
|
tag_name: dev-${{ steps.date.outputs.date }}
|
||||||
files: |-
|
files: |-
|
||||||
|
"LICENSE.txt"
|
||||||
|
"README.md"
|
||||||
"on-site-vtt/module.json"
|
"on-site-vtt/module.json"
|
||||||
on-site-vtt.zip
|
"on-site-vtt.zip"
|
||||||
pre_release: true
|
pre_release: true
|
||||||
api_key: "${{secrets.RELEASE_TOKEN}}"
|
api_key: "${{secrets.RELEASE_TOKEN}}"
|
||||||
|
|||||||
@@ -5,8 +5,6 @@ on:
|
|||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
tags:
|
|
||||||
- "*"
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
@@ -31,11 +29,19 @@ jobs:
|
|||||||
find: "{{branch}}"
|
find: "{{branch}}"
|
||||||
replace: ${{ github.ref }}
|
replace: ${{ github.ref }}
|
||||||
include: "on-site-vtt/module.json"
|
include: "on-site-vtt/module.json"
|
||||||
- name: Pack and release
|
- name: Pack archive
|
||||||
uses: actions/release-action@main
|
uses: montudor/action-zip@v1
|
||||||
with:
|
with:
|
||||||
title: ${{ github.ref_name }}
|
args: zip -r on-site-vtt.zip on-site-vtt
|
||||||
pre_release: false
|
- name: publish release
|
||||||
api_key: "${{secrets.RELEASE_TOKEN}}"
|
uses: https://gitea.aweleczka.de/actions/release-action@main
|
||||||
|
with:
|
||||||
|
title: dev-${{ steps.date.outputs.date }}
|
||||||
|
tag_name: dev-${{ steps.date.outputs.date }}
|
||||||
files: |-
|
files: |-
|
||||||
on-site-vtt/**
|
"LICENSE.txt"
|
||||||
|
"README.md"
|
||||||
|
"on-site-vtt/module.json"
|
||||||
|
"on-site-vtt.zip"
|
||||||
|
pre_release: true
|
||||||
|
api_key: "${{secrets.RELEASE_TOKEN}}"
|
||||||
|
|||||||
21
.pre-commit-config.yaml
Normal file
21
.pre-commit-config.yaml
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
## See https://pre-commit.com for more information
|
||||||
|
# See https://pre-commit.com/hooks.html for more hooks
|
||||||
|
repos:
|
||||||
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||||
|
rev: v3.2.0
|
||||||
|
hooks:
|
||||||
|
- id: trailing-whitespace
|
||||||
|
- id: end-of-file-fixer
|
||||||
|
- id: check-yaml
|
||||||
|
- id: check-added-large-files
|
||||||
|
- id: check-json
|
||||||
|
- id: check-byte-order-marker
|
||||||
|
- id: end-of-file-fixer
|
||||||
|
- id: mixed-line-ending
|
||||||
|
- id: detect-private-key
|
||||||
|
- repo: https://github.com/compilerla/conventional-pre-commit
|
||||||
|
rev: v3.0.0
|
||||||
|
hooks:
|
||||||
|
- id: conventional-pre-commit
|
||||||
|
stages: [commit-msg]
|
||||||
|
args: [feat, fix, chore, test]
|
||||||
@@ -26,11 +26,11 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"url": "https://gitea.aweleczka.de/aweleczka/On-Site-VTT",
|
"url": "https://gitea.aweleczka.de/aweleczka/On-Site-VTT",
|
||||||
"manifest": "https://gitea.aweleczka.de/aweleczka/On-Site-VTT/raw/branch/{{branch}}/on-site-vtt/module.json",
|
|
||||||
"download": "https://gitea.aweleczka.de/aweleczka/On-Site-VTT/releases/download/{{version}}/on-site-vtt.zip",
|
|
||||||
"bugs": "https://gitea.aweleczka.de/aweleczka/On-Site-VTT/issues",
|
"bugs": "https://gitea.aweleczka.de/aweleczka/On-Site-VTT/issues",
|
||||||
"readme": "https://gitea.aweleczka.de/aweleczka/On-Site-VTT/raw/branch/{{branch}}/README.md",
|
"manifest": "https://gitea.aweleczka.de/aweleczka/On-Site-VTT/releases/download/{{version}}/module.json",
|
||||||
"license": "https://gitea.aweleczka.de/aweleczka/On-Site-VTT/raw/branch/{{branch}}/LICENSE.txt",
|
"download": "https://gitea.aweleczka.de/aweleczka/On-Site-VTT/releases/download/{{version}}/on-site-vtt.zip",
|
||||||
|
"readme": "https://gitea.aweleczka.de/aweleczka/On-Site-VTT/releases/download/{{version}}/README.md",
|
||||||
|
"license": "https://gitea.aweleczka.de/aweleczka/On-Site-VTT/releases/download/{{version}}/LICENSE.txt",
|
||||||
"flags": {
|
"flags": {
|
||||||
"allowBugReporter": true
|
"allowBugReporter": true
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user