diff --git a/.github/workflows/CD.yml b/.github/workflows/CD.yml new file mode 100644 index 0000000..79ff36b --- /dev/null +++ b/.github/workflows/CD.yml @@ -0,0 +1,38 @@ +name: afterschool-CD-with-xquare-deployment-action + +on: + push: + branches: [ main ] + +jobs: + build: + permissions: + id-token: write + contents: read + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + - name: NodeJS Installation ${{ matrix.node-version }} + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node-version }} + + - name: build + run: npm run build + working-directory: ./src + + - name: Cache node modules + uses: actions/cache@v2 + with: + path: node_modules + key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }} + restore-keys: | + ${{ runner.os }}-node-modules- + + - name: Deploy to xquare + uses: team-xquare/xquare-deployment-action@master + with: + environment: YOUR_ENVIRONMENT + access_key: ${{ secrets.ACCESS_KEY }} + github_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}