Skip to content

Commit

Permalink
fix(ghrelease): fix ghrelease yml
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippeLafreniere18 committed Mar 9, 2023
1 parent 70b0369 commit 75ace13
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 24 deletions.
35 changes: 15 additions & 20 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,32 +13,29 @@ name: "CodeQL"

on:
push:
branches: [ "master" ]
branches: [ master, next ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "master" ]
branches: [ master, next ]
schedule:
- cron: '34 22 * * 5'
- cron: '32 22 * * 5'

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: [ 'javascript' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
# Learn more:
# https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed

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

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand All @@ -48,25 +45,23 @@ jobs:
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.

# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# queries: security-extended,security-and-quality
# queries: ./path/to/local/query, your-org/your-repo/queries@main


# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v2

# ℹ️ Command-line programs to run using the OS shell.
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
# 📚 https://git.io/JvXDl

# If the Autobuild fails above, remove it and uncomment the following three lines.
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
# and modify them (or add more) to build your code if your project
# uses a compiled language

# - run: |
# echo "Run, Build Application using script"
# ./location_of_script_within_repo/buildscript.sh
#- run: |
# make bootstrap
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
8 changes: 4 additions & 4 deletions .github/workflows/gh-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
tags:
- "*.*.*"

jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -20,12 +21,11 @@ jobs:
- name: Install zip
uses: montudor/action-zip@v1
- name: Zip output
run: zip igo2.zip *
run: zip -qq -r igo2.zip *
working-directory: dist/igo2
run: zip -qq -r igo2-quebec.zip *
working-directory: dist/igo2-quebec
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
body_path: ${{ github.workspace }}-CHANGELOG.txt
files: dist/igo2/igo2.zip
files: dist/igo2-quebec/igo2-quebec.zip

0 comments on commit 75ace13

Please sign in to comment.