Skip to content

url表示

url表示 #19

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
uses:

Check failure on line 12 in .github/workflows/static.yml

View workflow run for this annotation

GitHub Actions / Deploy to GitHub Pages

Invalid workflow file

The workflow is not valid. .github/workflows/static.yml (Line: 12, Col: 5): Unexpected value 'uses'
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install dependencies
run: |
cd front
npm install
- name: Build project
run: |
cd front
npm run build
- name: Configure git
run: |
git config --global user.name 'github-actions'
git config --global user.email '[email protected]'
- name: Deploy to GitHub Pages
run: |
cd front
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git
npm run deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Get GitHub Pages URL
uses: actions/github-script@v6
id: get-url
with:
script: |
const repo = context.repo.repo;
const owner = context.repo.owner;
const pages = await github.repos.getPages({ owner, repo });
return pages.data.html_url;
- name: Output GitHub Pages URL
run: |
echo "GitHub Pages URL: ${{ steps.get-url.outputs.result }}"