diff options
author | Thomas F. K. Jorna <[email protected]> | 2021-11-02 15:46:06 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2021-11-02 15:46:06 +0100 |
commit | b81eccf2b6c424b98fa13da8e62ba576fdad22cc (patch) | |
tree | f57a3cefa078949ce7b684acd659e29ef8a323d9 /.github/workflows/build.yml | |
parent | f53f21ac32edb5e8467d6b98eff2407042f1d227 (diff) | |
parent | c0747191ef1750213cf7d0742d7c01908b8defe3 (diff) |
Merge pull request #142 from org-roam/feat/cd
feat(cd): create proper cd
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index 83d3bb5..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Build -on: - push: - branches: - - main -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Checkout project - uses: actions/checkout@v2 - - name: Setup Node.js - uses: actions/[email protected] - with: - node-version: 16.x - - name: Build and push - uses: alexthemaster/[email protected] # check the releases tab on the right for versions (looks like this: v1.0.0) - # use this if you want the sharpest of cutting edges (can and probably WILL break from time to time) - # uses: alexthemaster/action-build-typescript@master - with: - pushToBranch: true # optional; can either be true or false | defaults to false - branch: 'main' # optional; the name of the branch the action should push the compiled code to | defaults to dist - githubToken: ${{ secrets.GITHUB_TOKEN }} # required if you use the pushToBranch option |