Skip to content

Commit

Permalink
Fix require syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
beuluis committed Oct 5, 2023
1 parent 67f9f6f commit 6fcdec9
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bun-node-qa-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
matrix:
node_version: ${{ fromJson(inputs.node_versions) }}
steps:
- uses: ./.github/workflows/environment-setup
- uses: Beuterei/reusable-workflows/.github/workflows/environment-setup.yml@main
with:
package_manager: bun
node_version: ${{ matrix.node_version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/github-npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
permissions:
packages: write
steps:
- uses: ./.github/workflows/environment-setup
- uses: Beuterei/reusable-workflows/.github/workflows/environment-setup.yml@main
with:
package_manager: ${{ inputs.package_manager }}
node_version: ${{ inputs.node_version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npm-node-qa-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
matrix:
node_version: ${{ fromJson(inputs.node_versions) }}
steps:
- uses: ./.github/workflows/environment-setup
- uses: Beuterei/reusable-workflows/.github/workflows/environment-setup.yml@main
with:
package_manager: npm
node_version: ${{ matrix.node_version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
name: ${{ inputs.dist_tag }}
url: ${{ steps.package-version-url.outputs.packageVersionUrl }}
steps:
- uses: ./.github/workflows/environment-setup
- uses: Beuterei/reusable-workflows/.github/workflows/environment-setup.yml@main
with:
package_manager: ${{ inputs.package_manager }}
node_version: ${{ inputs.node_version }}
Expand Down
6 changes: 3 additions & 3 deletions deploy.bash
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ set -e
##########################################################################################

### Needs those variables in the environment ###
# ENVIRONMENT_NAME - Name of the enviroment to deploy
# ENVIRONMENT_NAME - Name of the environment to deploy
# REPO_NAME - Repository name to deploy
# REPO_URL - Repository url to deploy
# REVISON - Git revison to deploy
# ENVIRONMENT - Enviroment file string to be used with docker-compose files
# ENVIRONMENT - Environment file string to be used with docker-compose files
### Variables end ###

### Configuration ###
Expand Down Expand Up @@ -43,7 +43,7 @@ git fetch
# Checkout to target revison
git checkout --detach "$REVISON"

# Write enviroment string to file
# Write environment string to file
echo "$ENVIRONMENT" > .env.local

# Pull newer images
Expand Down

0 comments on commit 6fcdec9

Please sign in to comment.