Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
SmallhillCZ committed Jun 11, 2024
2 parents 1c3d6a6 + 904f402 commit fbbecc3
Show file tree
Hide file tree
Showing 15 changed files with 600 additions and 58 deletions.
35 changes: 21 additions & 14 deletions .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,25 @@ jobs:
name: Build Docker Image
runs-on: ubuntu-latest
steps:
- name: Checkout the updated source code
uses: actions/checkout@v4

- name: Checkout current repository
uses: actions/checkout@master

- name: Enable docker layer caching
uses: satackey/[email protected]

- name: Build the Docker image
run: docker build . --tag otevrenadatamfcr/opendata-portal

- name: Login to DockerHub
run: docker login --username="${{secrets.DOCKER_USERNAME}}" --password="${{secrets.DOCKER_PASSWORD}}"

- name: Push to DockerHub
run: docker push otevrenadatamfcr/opendata-portal
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build image and push it to registry
uses: docker/build-push-action@v5
with:
build-args: NG_CONFIGURATION=production
push: true
context: .
tags: "ghcr.io/${{ github.repository_owner }}/opendata-portal:latest"
cache-from: type=gha
cache-to: type=gha,mode=max
8 changes: 4 additions & 4 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@ GEM
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
mercenary (0.4.0)
mini_portile2 (2.5.1)
nokogiri (1.11.5)
mini_portile2 (~> 2.5.0)
mini_portile2 (2.8.0)
nokogiri (1.13.6)
mini_portile2 (~> 2.8.0)
racc (~> 1.4)
pathutil (0.16.2)
forwardable-extended (~> 2.6)
public_suffix (4.0.6)
racc (1.5.2)
racc (1.6.0)
rb-fsevent (0.10.4)
rb-inotify (0.10.1)
ffi (~> 1.0)
Expand Down
4 changes: 2 additions & 2 deletions _includes/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ <h4 class="mt-3">Projekt otevřených dat MF</h4>
<h3 class="mb-3">Informační systémy</h3>
<p>
<a href="/topics/ares">ARES - rejstřík ekonomických subjektů</a><br>
<a href="/topics/dotace">CEDR III - centrální registr dotací</a><br>
<a href="/topics/dotace">ReD - Registr dotací</a><br>
<a href="/catalog">Katalog datových sad</a><br>
<a href="/topics/monitor">MONITOR Státní pokladny</a><br>
<a href="/">Portál otevřených dat</a><br>
Expand All @@ -40,4 +40,4 @@ <h3 class="mb-3">O projektu</h3>
</div>

</div>
</footer>
</footer>
Binary file added assets/content/topics/ReD.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions collections/_api/uredni-deska.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
title: Úřední deska - JSON služby
description: Data o informacích zveřejněných na úřední desce Ministerstva financí ve formátu JSON.
---

# Popis
Data o informacích zveřejněných na úřední desce Ministerstva financí jsou zpracována do formátu JSON. Aktualizace probíhá 1x denně a struktura dat odpovídá otevřené formální normě k úředním deskám.

# Dokumentace

Dokumentace OFN je na adrese [https://ofn.gov.cz/úřední-desky/](https://ofn.gov.cz/úřední-desky/)

# Náhled

{% include components/iframe.html url="https://opendata.mfcr.cz/uredni-deska/uredni-deska.json" %}
Loading

0 comments on commit fbbecc3

Please sign in to comment.