Files
Docker-Image-Downloader/.github/workflows/postgres.yml
T
Workflow config file is invalid. Please check your config file: model.ReadWorkflow: yaml: line 3: mapping values are not allowed in this context
2026-03-23 12:54:19 +09:00

26 lines
571 B
YAML

dhi.io/postgres:18-alpine3.22-dev
name: Docker Image Downloader (postgres:18)
on:
workflow_dispatch:
jobs:
download:
runs-on: ubuntu-latest
steps:
- name: Pull Images
run: |
docker pull dhi.io/postgres:18-alpine3.22-dev
- name: Save Images to TAR
run: |
docker save dhi.io/postgres:18-alpine3.22-dev postgres18.tar
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: postgres18
path: postgres18.tar
retention-days: 1