mirror of
https://gitee.com/dgiiot/dgiot.git
synced 2024-11-30 11:17:48 +08:00
18 lines
430 B
YAML
18 lines
430 B
YAML
name: Continuos Integration with Github
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'v*'
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- name: Publish to Docker Repository
|
|
uses: elgohr/Publish-Docker-Github-Action@master
|
|
with:
|
|
name: ispeakcode/docker-githubaction
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|