Skip to content

Commit

Permalink
v6.21.1
Browse files Browse the repository at this point in the history
  • Loading branch information
TechyGuy17 committed Dec 8, 2023
1 parent b807104 commit d9d6717
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,21 @@ name: Compile binaries
# For testing
on: push


jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: install deps
run: sudo apt install git build-essential cmake libuv1-dev libssl-dev libhwloc-dev
run: sudo apt install git build-essential cmake libuv1-dev libssl-dev libhwloc-dev zip
- name: build
run: mkdir build && cd build && cmake .. && make
- name: zip
run: mkdir kryptokrona-xmrig-${GITHUB_REF#refs/*/}-linux && mv xmrig kryptokrona-xmrig-${GITHUB_REF#refs/*/}-linux && zip -r kryptokrona-xmrig-${GITHUB_REF#refs/*/}-linux kryptokrona-xmrig-${GITHUB_REF#refs/*/}-linux
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: kryptokrona-xmrig-${GITHUB_REF#refs/*/}-linux.zip

0 comments on commit d9d6717

Please sign in to comment.