this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

[GitHub Actions] Create An Archived Source Artifact Of Darling

Thomas A. e311d5a5 9e006218

+24
+24
.github/workflows/actions.yaml
··· 60 60 with: 61 61 name: 'deb-source' 62 62 path: source/ 63 + 64 + create-source-artifact: 65 + runs-on: ubuntu-latest 66 + steps: 67 + - name: Checkout Darling 68 + uses: actions/checkout@v4 69 + with: 70 + submodules: recursive 71 + path: source/darling 72 + 73 + - name: Compress source 74 + run: | 75 + mkdir -v archive 76 + tar --create --gzip --verbose \ 77 + --file archive/darling-source.tar.gz \ 78 + --exclude=.git --exclude=.gitmodules --exclude=.gitignore \ 79 + --directory=source \ 80 + darling 81 + 82 + - name: Upload artifacts 83 + uses: actions/upload-artifact@v4.1.0 84 + with: 85 + name: 'source' 86 + path: archive/