Skip to content

Commit

Permalink
Migrate to Github Actions (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
nickw444 authored Nov 19, 2021
1 parent aa3f94a commit 5ed58fb
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 72 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/workflow.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
on:
push:
schedule:
- cron: '0 3 * * 6'


jobs:
build:
name: "Build"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: '^1.17.3'

- name: "Install Dependencies"
run: |
go mod download
- name: "Build"
run: |
bin/deploy-compile.sh
- name: Create Github Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags')
with:
generate_release_notes: true
files: target/*
72 changes: 0 additions & 72 deletions azure-pipelines.yml

This file was deleted.

0 comments on commit 5ed58fb

Please sign in to comment.