Skip to content

Commit

Permalink
Merge pull request #256 from pablosnt/cicd/update-desktop-app-workflow
Browse files Browse the repository at this point in the history
Stop using environment variables in matrix definition
  • Loading branch information
pablosnt authored Nov 7, 2023
2 parents 668c1bd + 0d920bf commit ed09b50
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@ on:
release:
types: [published]

env:
GITLAB_REKONO_ID: 45783845
GITLAB_KALI_FORK_ID: 48406619

jobs:
docker-image:
name: Docker Image
Expand Down Expand Up @@ -52,14 +48,18 @@ jobs:
matrix:
include:
- git-add-files: .
source-proect-id: ${{ env.GITLAB_REKONO_ID }}
# GitLab Rekono repository
source-project-id: 45783845
source-branch: release/${{ github.event.release.name }}
target-project-id: ${{ env.GITLAB_REKONO_ID }}
# GitLab Rekono repository
target-project-id: 45783845
target-branch: kali/master
- git-add-files: rekono
source-project-id: ${{ env.GITLAB_REKONO_ID }}
# GitLab Rekono repository
source-project-id: 45783845
source-branch: kali-release/${{ github.event.release.name }}
target-project-id: ${{ env.GITLAB_KALI_FORK_ID }}
# GitLab Kali fork
target-project-id: 48406619
target-branch: kali/master
runs-on: ubuntu-latest
environment: gitlab
Expand Down

0 comments on commit ed09b50

Please sign in to comment.