We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53e6e99 commit 0bd32b6Copy full SHA for 0bd32b6
.github/workflows/build.yml
@@ -68,7 +68,15 @@ jobs:
68
- uses: actions/upload-artifact@v2
69
with:
70
name: ${{ steps.vars.outputs.PKG_BASENAME }}
71
- path: ${{ env.BIN_DIR }}
+ path: |
72
+ ${{ env.BIN_DIR }}
73
+ main.lua
74
+ debugger.lua
75
+ LICENSE
76
+ changelog.md
77
+ locale
78
+ meta
79
+ script
80
81
- name: Package tarballs
82
if: startsWith(github.ref, 'refs/tags/')
@@ -81,7 +89,7 @@ jobs:
89
mkdir -p ${STAGING}
90
83
91
# Copying binary and runtime files to staging area
84
- cp -r main.lua debugger.lua locale meta script ${{ env.BIN_DIR }} ${STAGING}
92
+ cp -r main.lua debugger.lua LICENSE changelog.md locale meta script ${{ env.BIN_DIR }} ${STAGING}
85
93
86
94
# Creating release assets
87
95
pushd "${STAGING}/" >/dev/null
0 commit comments