Create postgres.yml
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
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
|
||||
Reference in New Issue
Block a user