Removing stage.yml, will not used

This commit is contained in:
2020-11-08 00:15:33 -03:00
parent 07f10955a5
commit 62d56d02d7
2 changed files with 1 additions and 27 deletions

View File

@@ -2,7 +2,7 @@ name: Creates a docker image for production
on:
push:
branches: [master]
branches: [main]
jobs:
docker:

View File

@@ -1,26 +0,0 @@
name: Deploy to stage
on:
push:
branches: [hotfix/*, feature/*]
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
with:
fetch-depth: 1
- name: Docker Build & Push to GitHub Package
uses: opspresso/action-docker@master
with:
args: --docker
env:
USERNAME: imakecodes
PASSWORD: ${{ secrets.GH_TOKEN }}
REGISTRY: 'docker.pkg.github.com'
DOCKERFILE: 'Dockerfile'
IMAGE_NAME: 'minesweeper-fe'
TAG_NAME: 'stage'
LATEST: 'true'