Skip to content

Commit

Permalink
fix missing make target
Browse files Browse the repository at this point in the history
  • Loading branch information
usrbinkat committed Nov 16, 2023
1 parent a0202e2 commit 5a5266e
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/makefile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,13 @@ jobs:
name: Unshallow clone for tags
id: tags
run: |
set -ex
sudo chown -R $(whoami) /__w/pulumi-provider-boilerplate/pulumi-provider-boilerplate
git config --global --add safe.directory /__w/pulumi-provider-boilerplate/pulumi-provider-boilerplate
git fetch --prune --unshallow --tags
-
name: Build
id: build
run: |
set -ex
git config --global --add safe.directory /__w/pulumi-provider-boilerplate/pulumi-provider-boilerplate
make build
-
name: Install
Expand All @@ -51,8 +48,12 @@ jobs:
make install
-
name: PulumiUp
id: deploy
run: make deploy
id: up
run: make up
-
name: PulumiDown
id: down
run: make down
-
name: Generate multi-language examples from yaml IaC program
id: examples
Expand Down

0 comments on commit 5a5266e

Please sign in to comment.