mirror of
https://github.com/tcgdex/compiler.git
synced 2025-04-22 02:32:10 +00:00
Updated Action to not upload pull requests (#7)
* Trying to understand github object Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Fixed Workflow Signed-off-by: Avior <florian.bouillon@delta-wings.net> * some more tests Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
parent
d5638674a2
commit
20ed7740a3
@ -6,3 +6,7 @@ indent_size = 4
|
||||
charset = utf-8
|
||||
trim_trailing_whitespace = true
|
||||
insert_final_newline = true
|
||||
|
||||
[*.yaml]
|
||||
indent_size = 2
|
||||
indent_style = space
|
||||
|
10
.github/workflows/node.js.yml
vendored
10
.github/workflows/node.js.yml
vendored
@ -1,10 +1,12 @@
|
||||
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
|
||||
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
|
||||
|
||||
name: Compile & Push
|
||||
name: Compile TCGdex
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
repository_dispatch:
|
||||
types:
|
||||
@ -47,7 +49,7 @@ jobs:
|
||||
|
||||
- name: Commit Changes
|
||||
working-directory: ./dist
|
||||
if: ${{ (github.event_name == 'push' && github.ref == 'refs/head/master') || github.event_name == 'repository_dispatch' }}
|
||||
if: ${{ (github.event_name == 'push') || github.event_name == 'repository_dispatch' }}
|
||||
run: |
|
||||
git config --local user.email "bot@tcgdex.net"
|
||||
git config --local user.name "TCGdex [bot]"
|
||||
@ -56,7 +58,7 @@ jobs:
|
||||
|
||||
- name: Push changes
|
||||
uses: ad-m/github-push-action@master
|
||||
if: ${{ (github.event_name == 'push' && github.ref == 'refs/head/master') || github.event_name == 'repository_dispatch' }}
|
||||
if: ${{ (github.event_name == 'push') || github.event_name == 'repository_dispatch' }}
|
||||
with:
|
||||
github_token: ${{ secrets.PUSH_TOKEN }}
|
||||
directory: ./dist
|
||||
@ -64,7 +66,7 @@ jobs:
|
||||
|
||||
- name: Upload
|
||||
run: yarn upload
|
||||
if: ${{ (github.event_name == 'push' && github.ref == 'refs/head/master') || github.event_name == 'repository_dispatch' }}
|
||||
if: ${{ (github.event_name == 'push') || github.event_name == 'repository_dispatch' }}
|
||||
env:
|
||||
UPLOAD_REMOTE: ${{ secrets.UPLOAD_REMOTE }}
|
||||
UPLOAD_DIST: ${{ secrets.UPLOAD_DIST }}
|
||||
|
2
dist
2
dist
@ -1 +1 @@
|
||||
Subproject commit 1e7d47d502f84849ac8aa9f9e689cc83252f6b95
|
||||
Subproject commit 22246b5c913f785526df6d393e717a67c3d9c3f0
|
Loading…
x
Reference in New Issue
Block a user