mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-13 16:03:04 +00:00
Add Docker and Stripe (#73)
This commit is contained in:
committed by
GitHub
parent
5643a945eb
commit
f16c2fb114
28
.github/workflows/build-image.yml
vendored
Normal file
28
.github/workflows/build-image.yml
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
name: Docker Build And Push To Docker Hub
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
# - master
|
||||
tags:
|
||||
- v*
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Build Proxy Panel
|
||||
runs-on: ubuntu-18.04
|
||||
steps:
|
||||
- name: Git Checkout Code
|
||||
uses: actions/checkout@v1
|
||||
id: git_checkout
|
||||
|
||||
- name: Build and push Docker images
|
||||
uses: docker/build-push-action@v1
|
||||
with:
|
||||
push: true
|
||||
username: ${{ secrets.DOCKER_USERNAME }}
|
||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||
repository: v2cc/proxypanel
|
||||
tag_with_ref: true
|
||||
tag_with_sha: true
|
||||
tags: latest
|
||||
Reference in New Issue
Block a user