1
0
mirror of https://github.com/XFox111/PasswordGeneratorExtension.git synced 2026-04-22 08:08:01 +03:00

Major 3.0: Complete overhaul of the codebase, new features, bugfixes and more (#223)

Complete overhaul for v3.0 (see related PR)
This commit is contained in:
Eugene Fox
2023-11-12 15:59:07 +03:00
committed by GitHub
parent 47888e4774
commit 163da852f6
79 changed files with 6576 additions and 10592 deletions
+30
View File
@@ -0,0 +1,30 @@
name: PR next workflow
on:
push:
branches: [ master ]
paths:
- 'package.json'
permissions:
contents: write
jobs:
create-release-draft:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- name: Get version from package.json
id: get_manifest
run: |
content=`cat ./package.json`
echo "::set-output name=manifest::${content}"
- uses: dev-build-deploy/release-me@v0.14.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
prefix: v
draft: true
version: ${{ fromJson(steps.get_manifest.outputs.manifest).version }}
release-notes: .github/release_description_template.md