diff --git a/.github/workflows/website.yaml b/.github/workflows/website.yaml index 39d847d..bdd0f04 100644 --- a/.github/workflows/website.yaml +++ b/.github/workflows/website.yaml @@ -1,54 +1,53 @@ -name: Build Website -run-name: Build Website - -on: - push: - -jobs: - build: - name: Build NPM Project - runs-on: ubuntu-latest - container: node - steps: - - name: Clone Repository - uses: ztimson/actions/clone@develop - - - name: Install Dependencies - run: npm i - - - name: Build Project - run: npm run build - - - name: Upload Artifacts - if: ${{inputs.artifacts}} != "false" - uses: actions/upload-artifact@v3 - with: - name: website - path: dist - retention-days: 7 - - tag: - name: Tag Version - needs: build - runs-on: ubuntu-latest - container: node - steps: - - name: Clone Repository - uses: ztimson/actions/clone@develop - - - name: Get Version Number - run: echo "VERSION=$(cat package.json | grep version | grep -Eo ':.+' | grep -Eo '[[:alnum:]\.\/\-]+')" >> $GITHUB_ENV - - - name: Tag Version - uses: ztimson/actions/tag@develop - with: - tag: ${{env.VERSION}} - - publish: - name: Build & Push Dockerfile - needs: build - uses: ztimson/actions/.github/workflows/docker.yaml@develop - with: - name: ztimson/pelican-landing - repository: ${{github.server_url}}/${{github.repository}}.git - pass: ${{secrets.DEPLOY_TOKEN}} +name: Build Website +run-name: Build Website + +on: + push: + +jobs: + build: + name: Build NPM Project + runs-on: ubuntu-latest + container: node + steps: + - name: Clone Repository + uses: ztimson/actions/clone@develop + + - name: Install Dependencies + run: npm i + + - name: Build Project + run: npm run build + + - name: Upload Artifacts + uses: actions/upload-artifact@v3 + with: + name: website + path: dist + retention-days: 7 + + tag: + name: Tag Version + needs: build + runs-on: ubuntu-latest + container: node + steps: + - name: Clone Repository + uses: ztimson/actions/clone@develop + + - name: Get Version Number + run: echo "VERSION=$(cat package.json | grep version | grep -Eo ':.+' | grep -Eo '[[:alnum:]\.\/\-]+')" >> $GITHUB_ENV + + - name: Tag Version + uses: ztimson/actions/tag@develop + with: + tag: ${{env.VERSION}} + + publish: + name: Build & Push Dockerfile + needs: build + uses: ztimson/actions/.github/workflows/docker.yaml@develop + with: + name: ztimson/pelican-landing + repository: ${{github.server_url}}/${{github.repository}}.git + pass: ${{secrets.DEPLOY_TOKEN}}