Skip to content

Instantly share code, notes, and snippets.

@extrawurst
Last active April 14, 2020 11:39
Show Gist options
  • Save extrawurst/aadef07e8b28eda87bdf8fcf570dd6e6 to your computer and use it in GitHub Desktop.
Save extrawurst/aadef07e8b28eda87bdf8fcf570dd6e6 to your computer and use it in GitHub Desktop.
GitHub actions workflow to automate hombrew app deployment
name: CD
on:
push:
tags:
- '*'
jobs:
release-osx:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Build Release
run: make build-release
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment