Skip to content

Commit

Permalink
Fix zip artefacts
Browse files Browse the repository at this point in the history
  • Loading branch information
monkeyman192 committed Aug 15, 2024
1 parent cbbaf90 commit 9e95271
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 8 deletions.
21 changes: 14 additions & 7 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
outputs:
nmsdk_version: ${{ steps.get_nmsdk_version.outputs.version }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Install dependencies
Expand All @@ -31,18 +31,25 @@ jobs:
- name: Build release
run: |
python ./tools/build.py
cp build/nmsdk.zip nmsdk.zip
dir
Expand-Archive build/nmsdk.zip -DestinationPath .
dir
cd nmsdk
dir
cd ..
- name: Get NMSDK tag version
id: get_nmsdk_version
run: echo "version=$(Tools/read_nmsdk_version.sh)" >> $GITHUB_OUTPUT
shell: bash
- name: list files
run: dir
- name: Upload plugin zip for release
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: NMSDK
path: nmsdk.zip
path: nmsdk
- name: Upload website for release
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: NMSDK_site
path: html_docs/*
Expand All @@ -64,7 +71,7 @@ jobs:
shell: bash
- name: Upload resources if version matches
if: env.VERSION == env.TAG
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
name: "${{ env.TAG }}"
tag_name: ${{ env.TAG }}
Expand Down
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
bl_info = {
"name": "No Man's Sky Development Kit",
"author": "gregkwaste, monkeyman192",
"version": (0, 9, "26d"),
"version": (0, 9, 26),
"blender": (4, 0, 0),
"location": "File > Export/Import",
"description": "Create NMS scene structures and export to NMS File format",
Expand Down

0 comments on commit 9e95271

Please sign in to comment.