Fix Docker release workflow cache failure

This commit is contained in:
Sergey Filkin
2026-04-17 23:46:55 +03:00
parent 94a3e102b4
commit e495df98b3
4 changed files with 12 additions and 8 deletions
-2
View File
@@ -57,5 +57,3 @@ jobs:
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
+6
View File
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and the project uses Semantic Versioning.
## [0.1.1] - 2026-04-17
### Fixed
- Removed GitHub Actions cache export from the Docker release workflow after GitHub Actions Cache returned `502` during image publication.
## [0.1.0] - 2026-04-17
### Added
+5 -5
View File
@@ -2,7 +2,7 @@
Сервис конвертации Markdown в самодостаточный HTML (через GitHub API).
Текущая версия: `0.1.0`
Текущая версия: `0.1.1`
Часто нужен адекватно (минималистично) выглядящий HTML из Markdown. HTML получем через открытый API GitHub, а стили просто захардкожены в шаблоне.
@@ -68,14 +68,14 @@ curl http://localhost:8000/version
```bash
git add VERSION CHANGELOG.md
git commit -m "Release v0.1.0"
git tag v0.1.0
git commit -m "Release v0.1.1"
git tag v0.1.1
git push origin main --tags
gh release create v0.1.0 --notes-file CHANGELOG.md
gh release create v0.1.1 --notes-file CHANGELOG.md
```
После публикации релиза GitHub Actions автоматически собирает Docker-образ и публикует его в GitHub Container Registry:
```bash
docker pull ghcr.io/fserg/md-to-html:v0.1.0
docker pull ghcr.io/fserg/md-to-html:v0.1.1
```
+1 -1
View File
@@ -1 +1 @@
0.1.0
0.1.1