Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Loxeris committed Sep 9, 2024
1 parent 00b0c93 commit 601eba2
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,6 @@ jobs:

build-deploy-dev-gubbins-image:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' && github.repository == 'DIRACGrid/diracx-web' }}
steps:
- uses: actions/checkout@v4

Expand All @@ -165,7 +164,7 @@ jobs:
- name: Build Docker image (extension example)
uses: docker/build-push-action@v6
with:
context: ./packages/extensions
file: ./packages/extensions
push: ${{ github.event_name == 'push' && github.repository == 'DIRACGrid/diracx-web' && github.ref_name == 'main' }}
tags: ghcr.io/diracgrid/diracx-web/extension-example:dev
platforms: linux/amd64,linux/arm64
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ jobs:
run-lint:
runs-on: ubuntu-latest
# Run the tests only if It's a PR or if the repo is DIRACGrid/diracx-web
if: github.event_name != 'push' || github.repository == 'DIRACGrid/diracx-web'
steps:
# Checkout the new source code
- uses: actions/checkout@v4
Expand All @@ -34,7 +33,6 @@ jobs:
run-demo:
runs-on: ubuntu-latest
# Run the tests only if It's a PR or if the repo is DIRACGrid/diracx-web
if: github.event_name != 'push' || github.repository == 'DIRACGrid/diracx-web'
steps:
# Checkout the new source code
- uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions packages/extensions/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ FROM node:alpine AS build
WORKDIR /app
# Copy the application to the working directory
COPY ../.. .
RUN ls
# Install the project dependencies
RUN npm ci
# Build the static export with telemetry disabled (https://nextjs.org/telemetry)
Expand Down

0 comments on commit 601eba2

Please sign in to comment.