Skip to content

Commit

Permalink
fix(?): Removing $default_branch
Browse files Browse the repository at this point in the history
  • Loading branch information
gcarreno committed Sep 1, 2023
1 parent bf77385 commit 9fd3abb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.lazarus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ permissions:
on:

push:
branches: [ $default-branch ]
branches: [ main ]
tags: [ "*" ]
paths-ignore: [ "README.md", "CHANGELOG.md", "release-notes.md" ]

Expand All @@ -17,7 +17,7 @@ jobs:

build:
name: Build Application
uses: gcarreno/re-use-workflows/.github/workflows/build.lazarus.yml@$default-branch
uses: gcarreno/re-use-workflows/.github/workflows/build.lazarus.yml@main
with:
app-name: helloworld
lpi-path: src
Expand All @@ -41,7 +41,7 @@ jobs:

test:
name: Test Application
uses: gcarreno/re-use-workflows/.github/workflows/test.lazarus.yml@$default-branch
uses: gcarreno/re-use-workflows/.github/workflows/test.lazarus.yml@main
with:
app-name: helloworldtest
lpi_path: tests
Expand All @@ -58,7 +58,7 @@ jobs:

release:
name: Create GitHub Release
uses: gcarreno/re-use-workflows/.github/workflows/release.lazarus.yml@latest
uses: gcarreno/re-use-workflows/.github/workflows/release.lazarus.yml@main
needs: [ build, test ]
with:
artefacts: '[
Expand Down

0 comments on commit 9fd3abb

Please sign in to comment.