mirror of
https://github.com/teddysun/across.git
synced 2025-04-04 11:09:33 +08:00
18 lines
369 B
YAML
18 lines
369 B
YAML
name: Test and publish to DockerHub
|
|
on:
|
|
workflow_dispatch:
|
|
# push:
|
|
# branches: [ master ]
|
|
jobs:
|
|
# test:
|
|
# [...]
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: docker/build-push-action@v1
|
|
with:
|
|
username: sleeplife
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
repository: sleeplife/v2ray
|
|
tags: latest
|