Skip to content
This repository has been archived by the owner on Sep 22, 2023. It is now read-only.

Commit

Permalink
Merge pull request #33 from VNG-Realisatie/feature/adds-fixture
Browse files Browse the repository at this point in the history
feat: adds cicd with an additional fixture
  • Loading branch information
joerivrij authored Feb 14, 2023
2 parents 64b5b45 + 8f2c553 commit 5faa7c0
Show file tree
Hide file tree
Showing 2 changed files with 87 additions and 0 deletions.
55 changes: 55 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: ci

on:
push:
branches:
- 'main'
tags:
- "v*.*.*"

jobs:
push-images:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
# list of Docker images to use as base name for tags
images: |
ghcr.io/VNG-Realisatie/zgw-referentielijsten
# generate Docker tags based on the following events/attributes
tags: |
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=sha
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
-
name: Log in to github
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GHCR_TOKEN }}

-
name: Build and push
uses: docker/build-push-action@v3
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
32 changes: 32 additions & 0 deletions src/fixtures/resultaattypeomschrijvingen.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
[
{
"model": "datamodel.resultaattypeomschrijvinggeneriek",
"pk": 1,
"fields": {
"uuid": "fb65d251-1518-4185-865f-b8bdcfad07b1",
"omschrijving": "Toegekend",
"definitie": "Dit is testdata",
"opmerking": "Dit is testdata"
}
},
{
"model": "datamodel.resultaattypeomschrijvinggeneriek",
"pk": 2,
"fields": {
"uuid": "e6a0c939-3404-45b0-88e3-76c94fb80ea7",
"omschrijving": "Afgewezen",
"definitie": "Dit is testdata",
"opmerking": "Dit is testdata"
}
},
{
"model": "datamodel.resultaattypeomschrijvinggeneriek",
"pk": 3,
"fields": {
"uuid": "a6a0bd73-262a-401a-b629-9c4a908c69b5",
"omschrijving": "Ingetrokken",
"definitie": "Dit is testdata",
"opmerking": "Dit is testdata"
}
}
]

0 comments on commit 5faa7c0

Please sign in to comment.