Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bugfix/fix syntax #7

Merged
merged 4 commits into from
Oct 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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