Skip to content

Commit 489f316

Browse files
committed
Add tagged release workflow
1 parent 24a532a commit 489f316

2 files changed

Lines changed: 43 additions & 0 deletions

File tree

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: "Cura-plugin release"
2+
3+
on:
4+
push:
5+
tags:
6+
- "v*"
7+
8+
jobs:
9+
create-curapackages:
10+
name: "Tagged Release"
11+
runs-on: "ubuntu-latest"
12+
13+
steps:
14+
- uses: actions/checkout@v3
15+
with:
16+
path: "build"
17+
submodules: "recursive"
18+
- uses: fieldOfView/cura-plugin-packager-action@main
19+
with:
20+
source_folder: "build"
21+
package_info_path: "build/.github/workflows/package.json"
22+
- uses: "marvinpinto/action-automatic-releases@latest"
23+
with:
24+
repo_token: "${{ secrets.GITHUB_TOKEN }}"
25+
prerelease: false
26+
files: |
27+
*.curapackage

.github/workflows/package.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"author": {
3+
"author_id": "fieldofview",
4+
"display_name": "fieldOfView",
5+
"email": "aldo@fieldofview.com",
6+
"website": "http://fieldofview.com"
7+
},
8+
"description": "Provides an alternative interface which restores the sidebar.\n\nThe development of this plugin can be sponsored via Github Sponsors (https://github.com/sponsors/fieldofview) or Paypal (https://www.paypal.me/fieldofview)",
9+
"display_name": "Sidebar GUI",
10+
"package_id": "SidebarGUIPlugin",
11+
"package_type": "plugin",
12+
"package_version": "0.0.0",
13+
"sdk_version": 0,
14+
"sdk_version_semver": "0.0.0",
15+
"website": "https://github.com/fieldOfView/Cura-SidebarGUIPlugin"
16+
}

0 commit comments

Comments
 (0)