Skip to content

Commit

Permalink
added files
Browse files Browse the repository at this point in the history
  • Loading branch information
felixperfler committed Mar 26, 2024
1 parent e066030 commit e3145ce
Show file tree
Hide file tree
Showing 2 changed files with 82 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
changelog:
exclude:
labels:
- duplicate
- question
- invalid
- wontfix
- "help wanted"
- "good first issue"
- "more info needed"

categories:
- title: Breaking Changes 🛠
labels:
- Semver-Major
- breaking-change
- title: New Features 🎉
labels:
- Semver-Minor
- enhancement
- title: Bug fixes 🐛
- bug
- title: Documentation 📚
labels:
- documentation
- title: Other Changes
labels:
- "*"
54 changes: 54 additions & 0 deletions .github/workflows/Blender Add-on.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: Make Blender Add-on release

on:
release:
types: [published]

jobs:
deploy:
if: startsWith(github.ref, 'refs/tags/bezier-ppm')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: PointCloudCompare

- name: Get release
id: get_release
uses: bruceadams/[email protected]
env:
GITHUB_TOKEN: ${{ github.token }}

- name: Make zip
run: |
zip -r 'PointCloudCompare.zip' 'PointCloudCompare'
- name: Upload release asset
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.get_release.outputs.upload_url }}
asset_path: './PointCloudCompare.zip'
asset_name: 'PointCloudCompare.zip'
asset_content_type: 'application/zip'

- name: Upload release asset 2
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.get_release.outputs.upload_url }}
asset_path: 'PPM.blend'
asset_name: 'PPM.blend'
asset_content_type: 'application/zip'

- name: Upload release asset 3
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.get_release.outputs.upload_url }}
asset_path: "README.md"
asset_name: "Manual-Registration-Guidelines.md"
asset_content_type: 'application/zip'

0 comments on commit e3145ce

Please sign in to comment.