forked from xmrig/xmrig
-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4cef605
commit 15bfd8d
Showing
2 changed files
with
14 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -142,9 +142,9 @@ jobs: | |
cd xmrig_setup | ||
git config user.name MoneroOcean | ||
git config user.email [email protected] | ||
mv ../centos6_build/centos6_build.tar.gz xmrig.tar.xz | ||
mv ../centos6_build/centos6_build.tar.gz xmrig.tar.gz | ||
mv ../windows_build/windows_build.zip xmrig.zip | ||
unzip xmrig.zip | ||
zip -u offline_miner_setup.zip xmrig.exe config.json WinRing0x64.sys | ||
git commit -m "xmrig "${GITHUB_REF:10}" based release" xmrig.tar.xz xmrig.zip offline_miner_setup.zip | ||
git commit -m "xmrig "${GITHUB_REF:10}" based release" xmrig.tar.gz xmrig.zip offline_miner_setup.zip | ||
git push |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -136,3 +136,15 @@ jobs: | |
asset_path: centos6_build/centos6_build.tar.gz | ||
asset_name: xmrig-${{steps.version.outputs.VERSION}}-lin64-compat.tar.gz | ||
asset_content_type: application/zip | ||
- name: Update xmrig_setup repo | ||
run: | | ||
git clone https://$GITHUB_ACTOR:${{secrets.xmrig_setup_key}}@github.com/MoneroOcean/xmrig_setup.git | ||
cd xmrig_setup | ||
git config user.name MoneroOcean | ||
git config user.email [email protected] | ||
mv ../centos6_build/centos6_build.tar.gz xmrig.tar.gz | ||
mv ../windows_build/windows_build.zip xmrig.zip | ||
unzip xmrig.zip | ||
zip -u offline_miner_setup.zip xmrig.exe config.json WinRing0x64.sys | ||
git commit -m "xmrig "${GITHUB_REF:10}" based release" xmrig.tar.gz xmrig.zip offline_miner_setup.zip | ||
git push |