Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 802 Bytes

README.md

File metadata and controls

33 lines (22 loc) · 802 Bytes

GitHub Action to install and setup bk

Build

Installs the latest version of the Buildkite CLI (bk) for use from GitHub Actions.

Example usage

name: Push Package

on:
  push:
    branches: ["main"]

jobs:
  publish:
    name: Push Package
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2

      - uses: buildkite/setup-bk@v1
      - run: bk package push my-registry my-package.deb

Thanks

Inspired by setup-crane action by @imjasonh.