Fix Docker release workflow cache failure
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user