Skip to content

[BUG] POL not reflecting one-time buys (#503) #189

[BUG] POL not reflecting one-time buys (#503)

[BUG] POL not reflecting one-time buys (#503) #189

Workflow file for this run

name: Canary
on:
push:
branches: [ "master"]
jobs:
build-cli:
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [ubuntu-20.04, macos-latest]
steps:
- uses: actions/checkout@v4.2.2
- uses: actions/setup-go@v5
with:
go-version: 1.22.2 # The Go version to download (if necessary) and use.
- name: Build CLI
shell: bash
run: |
make build
cp "build/canined" "canined-$RUNNER_OS"
- uses: actions/upload-artifact@v4
with:
name: canined-${{runner.os}}
path: canined-${{runner.os}}
Release:
needs:
[build-cli]
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4.2.2
- uses: EndBug/latest-tag@latest
with:
# You can change the name of the tag with this input.
# Default: 'latest'
tag-name: canary
- uses: actions/download-artifact@v4
with:
name: canined-Linux
- uses: actions/download-artifact@v4
with:
name: canined-macOS
- name: Release
uses: softprops/action-gh-release@v2
with:
prerelease: true
name: Canary
tag_name: canary
files: |
canined-macOS
canined-Linux