diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml new file mode 100644 index 0000000..bde806b --- /dev/null +++ b/.github/workflows/github-actions.yml @@ -0,0 +1,15 @@ +name: Serverless actions +on: [push] +jobs: + + deploy: + name: Execute actions + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Deploy service + run: | + pnpm install + pnpm sls deploy \ No newline at end of file