Skip to content

Commit

Permalink
get correct path to shell
Browse files Browse the repository at this point in the history
  • Loading branch information
Styren committed Feb 2, 2023
1 parent 79f96ec commit 30f3dc7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
- v*.*.*
env:
# THIS GITHUB_TOKEN IS A REQUIREMENT TO BE ABLE TO WRITE TO GH RELEASES
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

# IF YOU NEED TO PUBLISH A NPM PACKAGE THEN ENSURE A NPM_TOKEN SECRET IS SET
# AND PUBLISH_NPM: TRUE. IF YOU WANT TO PUBLISH TO A PRIVATE NPM REGISTRY
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PROJECT_NAME := symbiosis Package

SHELL := /usr/bin/bash
SHELL := $(shell which bash)
PACK := symbiosis
ORG := symbiosis-cloud
PROJECT := github.com/${ORG}/pulumi-${PACK}
Expand Down

0 comments on commit 30f3dc7

Please sign in to comment.