File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -29,10 +29,10 @@ jobs:
29
29
core.setOutput("build_id", context.runNumber + 600); // builds.bepinex.dev build numbers start at 500
30
30
- uses : nrwl/last-successful-commit-action@v1
31
31
id : last_successful_commit
32
- if : ${{ steps.info.outputs.build_type == 'BleedingEdge' && env.GITHUB_TOKEN != null }}
32
+ if : ${{ steps.info.outputs.build_type == 'BleedingEdge' }}
33
33
with :
34
34
branch : master
35
- workflow_id : build_be .yml
35
+ workflow_id : build .yml
36
36
github_token : ${{ secrets.GITHUB_TOKEN }}
37
37
- uses : actions/setup-dotnet@v1
38
38
with :
45
45
BEPISBUILDS_HOST : ${{ secrets.BEPISBUILDS_HOST }}
46
46
if : ${{ steps.info.outputs.build_type == 'BleedingEdge' && env.BEPISBUILDS_HOST != null }}
47
47
run : |
48
- artifacts_list=$(ls ./bin/dist/*.* | tr '\n' ','); artifacts_list=${artifacts_list::-1};
48
+ artifacts_list=$(find ./bin/dist -maxdepth 1 -type f | tr '\n' ','); artifacts_list=${artifacts_list::-1};
49
49
curl --upload-file "{${artifacts_list}}" --ftp-pasv --ftp-skip-pasv-ip --ftp-create-dirs --ftp-method singlecwd --disable-epsv "ftp://${{ secrets.BEPISBUILDS_AUTH }}@${{ secrets.BEPISBUILDS_HOST }}:${{ secrets.BEPISBUILDS_PORT }}/bepinex_be/artifacts/${{ steps.info.outputs.build_id }}/"
50
50
- name : Generate changelog
51
51
id : generate_changelog
You can’t perform that action at this time.
0 commit comments