Add docker image to repo #40
Workflow file for this run
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
name: CI | |
env: | |
NODE_VERSION: 18.16.1 | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
# Needed for nx-set-shas within nx-cloud-main.yml, when run on the main branch | |
permissions: | |
actions: read | |
contents: read | |
packages: write | |
jobs: | |
lint-test-build: | |
name: Nx Cloud - Main Job | |
uses: nrwl/ci/.github/workflows/[email protected] | |
with: | |
main-branch-name: main | |
number-of-agents: 3 | |
init-commands: | | |
npx nx-cloud start-ci-run --stop-agents-after="build" --agent-count=3 | |
parallel-commands: | | |
npx nx-cloud record -- npx nx format:check | |
parallel-commands-on-agents: | | |
npx nx affected --target=lint --parallel=3 | |
npx nx affected --target=test --parallel=3 --ci --code-coverage | |
npx nx affected --target=build --parallel=3 | |
push-docker: | |
needs: lint-test-build | |
name: Build and upload docker image and archive | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ env.NODE_VERSION }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm i | |
- name: Run docker-build | |
run: npx nx docker-build datahub | |
- uses: docker/login-action@v1 | |
name: Login to GitHub Container Registry | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: 'Pushing the image onto ghcr.io' | |
run: | | |
docker push ghcr.io/camptocamp/mel-dataplatform/datahub:latest | |
agents: | |
name: Nx Cloud - Agents | |
uses: nrwl/ci/.github/workflows/[email protected] | |
with: | |
number-of-agents: 3 |