8000 update GPX · geografa/portfolio@2b9773d · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

update GPX

update GPX #38

Workflow file for this run

name: Node.js App Deployment
on:
push:
branches:
- main # Change this to your main branch name
jobs:
build:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: write
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20" # Specify your Node.js version
- name: Install Dependencies
run: npm install
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20" # Specify your Node.js version
- name: Install Dependencies
run: npm install
- name: Build with webpack
run: npx webpack --config webpack.config.js
- name: List Contents of dist Directory
run: ls -l ./dist # List contents of the dist directory
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
0