Browse Source

release upload

pull/125/head
inv2004 4 years ago
parent
commit
5240772b8c
  1. 27
      .github/workflows/build.yml

27
.github/workflows/build.yml

@ -13,7 +13,6 @@ jobs:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Build 5.x - name: Build 5.x
# shell: pwsh
run: | run: |
$BUILD_DIR = "Sophia-" $BUILD_DIR = "Sophia-"
if ($env:GITHUB_REF -eq "refs/heads/master") { if ($env:GITHUB_REF -eq "refs/heads/master") {
@ -21,10 +20,28 @@ jobs:
} else { } else {
$BUILD_DIR += ${env:GITHUB_REF} -replace ‘refs/tags/’, ‘’ $BUILD_DIR += ${env:GITHUB_REF} -replace ‘refs/tags/’, ‘’
} }
Get-ChildItem Env: # Get-ChildItem Env:
mkdir $BUILD_DIR mkdir $BUILD_DIR
cp -R Sophia/* $BUILD_DIR cp -R Sophia/* $BUILD_DIR
del -Force -Recurse "$BUILD_DIR/PowerShell 7.x" del -Force -Recurse "$BUILD_DIR/PowerShell 7.x"
gci -Recurse $BUILD_DIR | select FullName # gci -Recurse $BUILD_DIR | select FullName
iwr http://www.technosys.net/download.aspx?file=syspin.exe -OutFile $BUILD_DIR/syspin.exe
Compress-Archive -Path $BUILD_DIR -DestinationPath $BUILD_DIR.zip
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: true
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: Sophia-*.zip
tag: ${{ github.ref }}
overwrite: true
asset_content_type: application/zip

Loading…
Cancel
Save