Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
michelmelo authored Dec 18, 2019
1 parent be2299d commit 88072c9
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: MasterDeployCI
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Create Release Folder
run: rsync -arv --exclude='.git/' --exclude='.github/' --exclude='.gitignore' . ./release
- name: Switch to Release Folder
run: |
cd release
ls -la
- name: Bump version and push tag
uses: anothrNick/github-tag-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPO_OWNER: keithweaver

0 comments on commit 88072c9

Please sign in to comment.