Skip to content

Commit

Permalink
👷 Added automatic release creation
Browse files Browse the repository at this point in the history
  • Loading branch information
LNA-DEV committed Jun 20, 2023
1 parent 2815543 commit 2fc6bf2
Showing 2 changed files with 25 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/PrepareForPublish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: PrepareForPublish

on:
workflow_dispatch:
push:
branches: [ main ]

env:
version: v1.0.${{ github.run_number }}

jobs:
Prepare:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: ${{ env.VERSION }}
prerelease: false
title: ${{ env.VERSION }}

1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"cSpell.words": [
"activitypub",
"marvinpinto",
"paxian"
]
}

0 comments on commit 2fc6bf2

Please sign in to comment.