Files
Docker-Image-Downloader/.github/workflows/postgres.yml
T
2026-03-23 12:59:19 +09:00

24 lines
520 B
YAML

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-alpine
- name: Save Images to TAR
run: |
docker save dhi.io/postgres:18-alpine postgres18.tar
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: postgres18
path: postgres18.tar
retention-days: 1