Skip to content

Commit

Permalink
Merge branch 'main' into feat/dashboard-provided-contracts-page-v0
Browse files Browse the repository at this point in the history
  • Loading branch information
NaryLozano committed Jan 21, 2025
2 parents 892179b + 9576776 commit 4861789
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/build_push_docker_image.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Build and push Sedimark marketplace frontend development docker image

on:
workflow_dispatch:
push:
branches:
- '**'
- '!main'

jobs:
build-and-push:
runs-on: self-hosted
permissions:
packages: write

steps:
- name: Checkout repo
uses: actions/checkout@v4

- name: Install nodejs
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'npm'

- name: Install standardjs
run: |
npm install standard --global
- name: Standard linting check
run: |
standard
- name: Kaniko build & push
uses: aevea/action-kaniko@master
with:
image: marketplace-frontend
cache: "true"
tag: development
path: .
debug: true
registry: ghcr.io
password: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 4861789

Please sign in to comment.