Create FUNDING.yml #5
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: Build Sodium Plus | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: golang:1.20 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build | |
run: | | |
[[ -f bld ]] && rm -f bld | |
go build -buildvcs=false -o bld ./builder | |
./bld b | |
mkdir dist | |
mv *.zip *.tar.gz *.mrpack dist | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Sodium Plus Files | |
path: dist/* |