Browse Source

Delete .github/workflows directory

pull/587/head
kaiot 4 years ago
committed by GitHub
parent
commit
a1821cb093
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 23
      .github/workflows/deploy

23
.github/workflows/deploy

@ -1,23 +0,0 @@
name: Docker Image CI
on:
push:
branches:
- 'master'
jobs:
build-container:
name: Build Docker container image
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Login to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Publish to Docker Hub
uses: docker/build-push-action@v2
with:
push: true
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/wg:latest
Loading…
Cancel
Save