Fixed bug

This commit is contained in:
MoneroOcean 2020-01-20 16:12:02 +07:00
parent d6b726ff2c
commit 2ffcf5721d

View file

@ -25,16 +25,16 @@ jobs:
- name: Build project on CentOS 6
run: |
cd xmrig
scl enable devtoolset-6 "cmake . -DWITH_TLS=OFF -DWITH_HTTPD=OFF -DWITH_HWLOC=OFF"
scl enable devtoolset-6 "cmake . -DWITH_TLS=OFF -DWITH_HWLOC=OFF"
scl enable devtoolset-6 "make -j$(nproc)"
cp src/config.json .
mv xmrig-notls xmrig
tar cfz xmrig-${GITHUB_REF:10}-lin64.tar.gz xmrig config.json
- name: Upload CentOS 6 build artifact
- name: Upload CentOS 6 build artifacts
uses: actions/upload-artifact@v1
with:
name: centos6_build
path: xmrig/xmrig-${GITHUB_REF:10}-lin64.tar.gz
path: ./xmrig-${GITHUB_REF:10}-lin64.tar.gz
deploy:
needs: build_lin_rh6
name: Create release and upload artifacts
@ -50,7 +50,7 @@ jobs:
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
- name: Download CentOS 6 build artifact
- name: Download CentOS 6 build artifacts
uses: actions/download-artifact@v1
with:
name: centos6_build