diff options
| author | selsta <selsta@sent.at> | 2021-04-19 07:31:16 +0200 |
|---|---|---|
| committer | selsta <selsta@sent.at> | 2021-04-19 07:33:27 +0200 |
| commit | 2dfb111a920ee13ae9aab631f204a0a86ea790f6 (patch) | |
| tree | 61df3d66dcd43e6e19de246d275da48341bd0d30 | |
| parent | d544fd0f52818de0cf3e150f78673f45cddf906e (diff) | |
| download | monzero-core-2dfb111a920ee13ae9aab631f204a0a86ea790f6.tar.gz monzero-core-2dfb111a920ee13ae9aab631f204a0a86ea790f6.tar.xz monzero-core-2dfb111a920ee13ae9aab631f204a0a86ea790f6.zip | |
workflows: upload source archive artifact
Co-authored-by: xiphon <xiphon@protonmail.com>
| -rw-r--r-- | .github/workflows/build.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index aa6afbfbc..5a37403b8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -154,3 +154,20 @@ jobs: # ARCH="default" (not "native") ensures, that a different execution host can execute binaries compiled elsewhere. # BUILD_SHARED_LIBS=ON speeds up the linkage part a bit, reduces size, and is the only place where the dynamic linkage is tested. + source-archive: + runs-on: ubuntu-20.04 + steps: + - uses: actions/checkout@v1 + with: + submodules: recursive + - name: archive + run: | + pip install git-archive-all + export VERSION="monero-$(git describe)" + export OUTPUT="$VERSION.tar" + echo "OUTPUT=$OUTPUT" >> $GITHUB_ENV + /home/runner/.local/bin/git-archive-all --prefix "$VERSION/" --force-submodules "$OUTPUT" + - uses: actions/upload-artifact@v2 + with: + name: ${{ env.OUTPUT }} + path: /home/runner/work/monero/monero/${{ env.OUTPUT }} |
