diff --git a/.github/workflows/jar.yml b/.github/workflows/jar.yml index 739778e..ae39c80 100644 --- a/.github/workflows/jar.yml +++ b/.github/workflows/jar.yml @@ -20,4 +20,10 @@ jobs: uses: gradle/gradle-build-action@v2 - name: Execute Gradle build - run: ./gradlew shadowJar \ No newline at end of file + run: ./gradlew shadowJar + + - name: Archive build + uses: actions/upload-artifact@v2 + with: + name: build + path: build/libs/ \ No newline at end of file diff --git a/.github/workflows/native.yml b/.github/workflows/native.yml index 744b89a..25ca7c4 100644 --- a/.github/workflows/native.yml +++ b/.github/workflows/native.yml @@ -20,4 +20,10 @@ jobs: uses: gradle/gradle-build-action@v2 - name: Execute Gradle build - run: ./gradlew nativeBinaries \ No newline at end of file + run: ./gradlew nativeBinaries + + - name: Archive build + uses: actions/upload-artifact@v2 + with: + name: build + path: build/bin/native/hcReleaseExecutable/ \ No newline at end of file