Skip to content

Commit

Permalink
Create secure-code-archive.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ejreyes-ugr committed Sep 14, 2024
1 parent 8dca30d commit 2b6d285
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/secure-code-archive.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Archive Secure Code

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

# Paso para verificar la seguridad del código (puedes usar herramientas como CodeQL o dependabot)
- name: Run CodeQL analysis
uses: github/codeql-action/analyze@v2
with:
category: "security-extended"

# Condicional para archivar solo si el análisis de seguridad fue exitoso
- name: Create ZIP Archive
if: success() # Se archiva solo si los pasos anteriores fueron exitosos
uses: actions/archive@v2
with:
path: ./ # Directorio que será comprimido
format: zip
name: secure-code.zip

0 comments on commit 2b6d285

Please sign in to comment.