Skip to content

imotD is testing out GitHub Actions πŸš€ #11

imotD is testing out GitHub Actions πŸš€

imotD is testing out GitHub Actions πŸš€ #11

name: GitHub Actions Deploy
run-name: ${{ github.actor }} is testing out GitHub Actions πŸš€
on:
push:
branches:
- rc
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

Check failure on line 9 in .github/workflows/github-actions-deploy.yml

View workflow run for this annotation

GitHub Actions / GitHub Actions Deploy

Invalid workflow file

The workflow is not valid. .github/workflows/github-actions-deploy.yml (Line: 9, Col: 1): Unexpected value 'workflow_dispatch'
# Sets the GITHUB_TOKEN permissions to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: 'pages'
cancel-in-progress: true
jobs:
# build:
# name: Build
# runs-on: ubuntu-latest
# steps:
# - run: echo "πŸŽ‰ The job was automatically triggered by a ${{ github.event_name }} event."
# - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
# - run: echo "πŸ”Ž The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
# - name: Check out repository code
# uses: actions/checkout@v4
# - name: Setup Node.js
# uses: actions/setup-node@v3
# with:
# node-version: 16
# - name: Install dependencies
# run: npm install
# - name: Build project
# run: npm run deploy
# - name: Upload production-ready build files
# uses: actions/upload-artifact@v4
# with:
# name: production-files
# path: ./dist
deploy:
# name: Deploy
# needs: build
# runs-on: ubuntu-latest
# if: github.ref == 'refs/heads/main'
# steps:
# - name: Download artifact
# uses: actions/download-artifact@v4
# with:
# name: production-files
# path: ./dist
# - name: Deploy to GitHub Pages
# uses: peaceiris/actions-gh-pages@v3
# with:
# github_token: ${{ secrets.GITHUB_TOKEN }}
# publish_dir: ./dist
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
# Upload dist folder
path: './dist'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4