mirror of
https://github.com/Snigdha-OS/Snigdha-OS.github.io.git
synced 2025-09-06 12:45:18 +02:00
👷 ci(deployment): changes the cd
Signed-off-by: Abhiraj Roy <157954129+iconized@users.noreply.github.com>
This commit is contained in:
88
.github/workflows/deployment.yml
vendored
88
.github/workflows/deployment.yml
vendored
@@ -1,77 +1,41 @@
|
|||||||
# Sample workflow for building and deploying a Hugo site to GitHub Pages
|
# https://github.com/actions/deploy-pages#usage
|
||||||
name: Deploy Snigdha OS
|
name: Deploy to GitHub Pages
|
||||||
|
|
||||||
on:
|
on:
|
||||||
# Runs on pushes targeting the default branch
|
workflow_dispatch:
|
||||||
push:
|
push:
|
||||||
branches: ["master"]
|
branches:
|
||||||
pull_request:
|
- master
|
||||||
branches: ["master"]
|
|
||||||
|
|
||||||
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
pages: write
|
|
||||||
id-token: write
|
|
||||||
|
|
||||||
# Environment variables available to all jobs and steps in this workflow
|
|
||||||
env:
|
|
||||||
HUGO_ENV: production
|
|
||||||
HUGO_VERSION: "0.121.2"
|
|
||||||
GO_VERSION: "1.20.5"
|
|
||||||
NODE_VERSION: "20.0.0"
|
|
||||||
TINA_CLIENT_ID: ${{ vars.TINA_CLIENT_ID }}
|
|
||||||
TINA_TOKEN: ${{ vars.TINA_TOKEN }}
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
# Build job
|
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v3
|
||||||
- name: Set up Node.js
|
- run: corepack enable
|
||||||
uses: actions/setup-node@v4
|
- uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: ${{ env.NODE_VERSION }}
|
node-version: "16"
|
||||||
|
# Pick your own package manager and build script
|
||||||
- name: Install Hugo
|
- run: npm install
|
||||||
run: |
|
- run: npx nuxt build --preset github_pages
|
||||||
curl -LO "https://github.com/gohugoio/hugo/releases/download/v${{ env.HUGO_VERSION }}/hugo_extended_${{ env.HUGO_VERSION }}_Linux-64bit.tar.gz"
|
|
||||||
tar -xvf hugo_extended_${{ env.HUGO_VERSION }}_Linux-64bit.tar.gz
|
|
||||||
sudo mv hugo /usr/local/bin/
|
|
||||||
rm hugo_extended_${{ env.HUGO_VERSION }}_Linux-64bit.tar.gz
|
|
||||||
hugo version
|
|
||||||
|
|
||||||
- name: Install Go
|
|
||||||
run: |
|
|
||||||
curl -LO "https://dl.google.com/go/go${{ env.GO_VERSION }}.linux-amd64.tar.gz"
|
|
||||||
sudo tar -C /usr/local -xzf go${{ env.GO_VERSION }}.linux-amd64.tar.gz
|
|
||||||
echo "export PATH=$PATH:/usr/local/go/bin" >> $GITHUB_ENV
|
|
||||||
rm go${{ env.GO_VERSION }}.linux-amd64.tar.gz
|
|
||||||
go version
|
|
||||||
|
|
||||||
- name: Setup Project
|
|
||||||
run: npm run project-setup
|
|
||||||
|
|
||||||
- name: Install npm dependencies
|
|
||||||
run: npm install
|
|
||||||
|
|
||||||
- name: Publish to GitHub Pages
|
|
||||||
run: npm run build
|
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-pages-artifact@v3
|
uses: actions/upload-pages-artifact@v1
|
||||||
with:
|
with:
|
||||||
path: ./public
|
path: ./.output/public
|
||||||
|
|
||||||
# Deployment job
|
# Deployment job
|
||||||
deploy:
|
deploy:
|
||||||
environment:
|
# Add a dependency to the build job
|
||||||
name: github-pages
|
|
||||||
url: ${{ steps.deployment.outputs.page_url }}
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
needs: build
|
needs: build
|
||||||
|
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
|
||||||
|
permissions:
|
||||||
|
pages: write # to deploy to Pages
|
||||||
|
id-token: write # to verify the deployment originates from an appropriate source
|
||||||
|
# Deploy to the github_pages environment
|
||||||
|
environment:
|
||||||
|
name: github_pages
|
||||||
|
url: ${{ steps.deployment.outputs.page_url }}
|
||||||
|
# Specify runner + deployment step
|
||||||
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Deploy to GitHub Pages
|
- name: Deploy to GitHub Pages
|
||||||
id: deployment
|
id: deployment
|
||||||
uses: actions/deploy-pages@v4
|
uses: actions/deploy-pages@v1
|
||||||
|
Reference in New Issue
Block a user