Skip to content

Commit

Permalink
Convert to Github Actions
Browse files Browse the repository at this point in the history
Signed-off-by: Kim Christensen <[email protected]>
  • Loading branch information
kichristensen committed Jun 8, 2024
1 parent a8ad87f commit df0a17d
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 29 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/aws-mixin.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: porter/aws-mixin
on:
push:
branches:
- main
- v*
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Configure Agent
run: go run mage.go ConfigureAgent
- name: Test
run: mage Test
- name: Cross Compile
run: mage XBuildAll
- name: Publish
if: success() && github.event_name != 'PullRequest'
env:
GITHUB_TOKEN: "${{ secrets.PUBLISH_TOKEN }}"
run: mage Publish
29 changes: 0 additions & 29 deletions azure-pipelines.yml

This file was deleted.

0 comments on commit df0a17d

Please sign in to comment.