Initial OnionTalk build CI workflow pipeline.. #1
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: OnionTalk Build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Go compiler | |
run: apt install -y golang-go | |
- name: Go version | |
run: go version | |
- name: Build OnionTalk | |
run: | | |
chmod +x build.sh | |
./build.sh | |
- name: Upload QLBase build | |
uses: actions/upload-artifact@v4 | |
with: | |
name: OnionTalk | |
path: dist/ | |
retention-days: 1 |