Skip to content

Commit

Permalink
add workflow that will make development refactor container always ava…
Browse files Browse the repository at this point in the history
…ilable

Signed-off-by: vsoch <[email protected]>
  • Loading branch information
vsoch committed Dec 10, 2023
1 parent aaffc38 commit baae3e2
Show file tree
Hide file tree
Showing 2 changed files with 1,343 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/build-deploy-refactor.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: build flux-operator refactor

on:
pull_request: []
push:
branches:
- test-refactor-modular
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
name: make and build refactor container
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- uses: actions/setup-go@v3
with:
go-version: ^1.20
- name: GHCR Login
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and Deploy Container
run: make test-deploy DEVIMG=ghcr.io/flux-framework/flux-operator:refactor-0-2-0
Loading

0 comments on commit baae3e2

Please sign in to comment.