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