Skip to content

Commit

Permalink
fix: add placeholder for env variable
Browse files Browse the repository at this point in the history
  • Loading branch information
kristof-mattei committed Nov 23, 2023
1 parent de1c60f commit 4bb5340
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -399,6 +399,8 @@ jobs:
needs:
- calculate-version
# if: ... is not needed because calculate-version will not run if we disable building the docker container
env:
APPLICATION_NAME: PLACEHOLDER # overridden in step 'Set application name', this is merely to satisfy the linter
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
Expand Down
1 change: 1 addition & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ fn main() -> Result<(), color_eyre::Report> {
println!("{}", foo());
println!("{}", bar());
println!("{}", quz());

todo!("TODO");
}

Expand Down

0 comments on commit 4bb5340

Please sign in to comment.