From 0025c85308db54e27faa61567e0ca7283b2a96ab Mon Sep 17 00:00:00 2001 From: mat <27899617+mat-1@users.noreply.github.com> Date: Sun, 14 Feb 2021 14:26:46 -0600 Subject: Rename main.yml to compile.yml --- .github/workflows/compile.yml | 15 +++++++++++++++ .github/workflows/main.yml | 15 --------------- 2 files changed, 15 insertions(+), 15 deletions(-) create mode 100644 .github/workflows/compile.yml delete mode 100644 .github/workflows/main.yml (limited to '.github/workflows') diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml new file mode 100644 index 0000000..fd60bc4 --- /dev/null +++ b/.github/workflows/compile.yml @@ -0,0 +1,15 @@ +on: [push] + +jobs: + build-push: + runs-on: ubuntu-latest + name: Builds Typescript + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Compile Typescript + uses: FuLagann/tsc-build-push@v1 + with: + user-name: "mat-1" + user-email: "github@matdoes.dev" + message: "Compiled TS into JS" diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index fd60bc4..0000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,15 +0,0 @@ -on: [push] - -jobs: - build-push: - runs-on: ubuntu-latest - name: Builds Typescript - steps: - - name: Checkout - uses: actions/checkout@v2 - - name: Compile Typescript - uses: FuLagann/tsc-build-push@v1 - with: - user-name: "mat-1" - user-email: "github@matdoes.dev" - message: "Compiled TS into JS" -- cgit