Skip to content

Create Post “2024-11-18-hello-world” #15

Create Post “2024-11-18-hello-world”

Create Post “2024-11-18-hello-world” #15

Workflow file for this run

name: Crear nuevo post
on:
push:
branches: ["master"]
permissions:
contents: read
pages: write
id-token: write
env:
GITHUB_TOKEN: ${{ secrets.AUTH_SECRET }}
jobs:
crear-post:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- run: npm install
- run: node addpost.js
- name: Commit changes
run: |
git config user.email "manyandamariano@hotmail.com"
git config user.name "CodeInvers3"
git add .
git commit -m "Create new post"
git push