Skip to content

Commit

Permalink
Debug workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
champsupertramp committed Nov 27, 2023
1 parent e2d6912 commit aebe8c7
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 8 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/increment-version.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
name: Increment Extension Versions

on:
push:
branches:
- main
workflow_call:

permissions:
contents: write
Expand Down
15 changes: 15 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Main Workflow Init
on:
push:
branches: [ "main" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
call-workflow1:
uses: ./.github/workflows/increment-version.yml
call-workflow2:
needs: call-workflow1
uses: ./.github/workflows/zip-release.yml
5 changes: 1 addition & 4 deletions .github/workflows/zip-release.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
name: Build Release

on:
push:
branches:
- main
workflow_call:

permissions:
contents: write
Expand Down

0 comments on commit aebe8c7

Please sign in to comment.