Skip to content

Commit

Permalink
Create release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
figorr authored Jun 21, 2024
1 parent 7497b20 commit 899e47e
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Release

on:
release:
types: [published]

jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2

# Verify environment
- name: Verify environment
run: |
echo "Current directory: $(pwd)"
ls -al
node -v
npm -v
# Install dependencies and build
- name: Install dependencies and build
run: |
cd $GITHUB_WORKSPACE # Cambia al directorio raíz del repositorio
npm install
npm run build
ls -R dist
# Upload build file to the release as an asset
- name: Upload build to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: dist/*
tag: ${{ github.ref }}
overwrite: true
file_glob: true

0 comments on commit 899e47e

Please sign in to comment.