mirror of
https://github.com/sotam0316/docker-py-revanced.git
synced 2026-04-24 19:38:36 +09:00
f758e9328f
This reverts commit 7164c29dd4.
22 lines
514 B
YAML
22 lines
514 B
YAML
name: Push to DockerHub
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- 'main'
|
|
paths:
|
|
- '**.py'
|
|
- 'README.md'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
dockerhub-push:
|
|
uses: nikhilbadyal/ghactions/.github/workflows/dockerhub-push.yml@main
|
|
if: github.repository == 'nikhilbadyal/docker-py-revanced'
|
|
secrets:
|
|
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
|