Skip to content

Commit

Permalink
Merge pull request #51 from kichristensen/useGithubActions
Browse files Browse the repository at this point in the history
Convert to Github Actions
  • Loading branch information
schristoff authored Aug 23, 2024
2 parents 573b96f + 1bd679a commit e471dd6
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 31 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/skeletor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: porter/skeletor
on:
push:
branches:
- main
- v*
pull_request:
branches:
- main
env:
PORTER_PACKAGES_REMOTE: https://github.com/getporter/test-packages.git
PORTER_RELEASE_REPOSITORY: github.com/getporter/skeletor
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4.1.0
with:
fetch-depth: 0
- name: Install Go
uses: actions/checkout@v4
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.GITHUB_TOKEN }}"
run: mage Publish
31 changes: 0 additions & 31 deletions azure-pipelines.yml

This file was deleted.

0 comments on commit e471dd6

Please sign in to comment.