create torrent #5
Workflow file for this run
This file contains hidden or 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
| name: create torrent | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y gpg build-essential cmake git libcurl4-openssl-dev libssl-dev | |
| - name: compile transmision | |
| run: | | |
| git clone https://github.com/transmission/transmission.git | |
| cd transmission | |
| git checkout 3.00 | |
| mkdir build && cd build | |
| cmake -DCMAKE_BUILD_TYPE=Release .. | |
| cmake --build . | |
| cmake --install . | |
| - name: Build torrent | |
| run: ./create_monero_torrent.sh |