-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(cicd): temporily test feature flags
- Loading branch information
1 parent
50f8846
commit ff658b0
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,15 +18,15 @@ jobs: | |
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- uses: flipt-io/[email protected] | ||
- run: flipt validate -d ui | ||
- run: flipt validate | ||
- uses: docker/login-action@v3 | ||
if: github.ref == 'refs/heads/develop' | ||
#if: github.ref == 'refs/heads/develop' | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Build and Push bundle | ||
if: github.ref == 'refs/heads/feat/feature-flags' # fixme: this should go to develop | ||
#if: github.ref == 'refs/heads/develop' | ||
run: | | ||
flipt bundle build sitrep-featureflags:latest | ||
flipt bundle push sitrep-featureflags:latest ghcr.io/f-eld-ch/sitrep/featureflags:develop | ||
|