diff options
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/linux.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/macos.yml | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 887d3fd55..845c78810 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -36,12 +36,12 @@ jobs: sudo apt-get install -y ruby ruby-dev rubygems build-essential sudo gem install --no-document fpm git submodule update --init - scripts/makepkg deb latest + scripts/makepkg deb # upload artifacts - uses: actions/upload-artifact@v2 with: name: xmake-latest.amd64.deb - path: xmake_latest_amd64.deb + path: artifacts/xmake.deb # publish release - name: publish diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 82c9072a1..2b239784f 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -36,14 +36,14 @@ jobs: brew install gnu-tar gem install --no-document fpm git submodule update --init - scripts/makepkg osxpkg latest + scripts/makepkg osxpkg scripts/archive-all scripts/makeself/build-runfile.sh # upload artifacts - uses: actions/upload-artifact@v2 with: name: xmake-latest.macosx.pkg - path: xmake-latest.pkg + path: artifacts/xmake.pkg - uses: actions/upload-artifact@v2 with: name: xmake-latest.gz.run |
