Skip to content

Merge branch 'main' of https://github.com/Hernanatn/Errores-- #17

Merge branch 'main' of https://github.com/Hernanatn/Errores--

Merge branch 'main' of https://github.com/Hernanatn/Errores-- #17

Workflow file for this run

name: empaquetar
on:
push:
branches: [ "main" ]
paths:
- '**.hpp'
jobs:
build:
runs-on: windows-latest
steps:
- name: checkout
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: garantizar python
uses: actions/setup-python@v2
with:
python-version: 3.12
- name: instalar dependencias
run: |
python -m pip install --upgrade pip
- name: empaquetar
run: |
python build/empaquetar.py
- name: commitear y pushear
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add .
git commit -m "actualiza empaquetado"
git push