mirror of
https://github.com/GMWalletApp/epusdt.git
synced 2026-07-07 02:06:16 +00:00
add pg conf
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
name: docker-alpine-epusdt
|
||||
on:
|
||||
workflow_dispatch: #github页面手动触发
|
||||
push:
|
||||
branches: [ "main" ]
|
||||
env:
|
||||
IMAGE_NAME: epusdt #这是您的镜像名
|
||||
|
||||
jobs:
|
||||
push-docker-hub:
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
TZ: Asia/Shanghai
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Login
|
||||
uses: docker/login-action@v2
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
- name: Build && Push
|
||||
uses: docker/build-push-action@v4
|
||||
with:
|
||||
context: .
|
||||
file: ./Dockerfile_alpine
|
||||
push: true
|
||||
tags: |
|
||||
${{ secrets.DOCKERHUB_USERNAME }}/${{ env.IMAGE_NAME }}:alpine
|
||||
Reference in New Issue
Block a user