Compile Tor for Linux on Ubuntu LTS #890
This file contains 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: Compile Tor for Linux on Ubuntu LTS | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
compile-tor: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Compile Tor | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y git build-essential automake libevent-dev libssl-dev zlib1g-dev | |
git clone https://git.torproject.org/tor.git | |
cd tor | |
./autogen.sh | |
./configure --disable-asciidoc | |
make | |
- name: Release Tor Binary | |
uses: softprops/action-gh-release@v1 | |
with: | |
tag_name: tor-ubuntu | |
files: | | |
tor/src/app/tor |