Skip to content

Commit

Permalink
Fix release action
Browse files Browse the repository at this point in the history
  • Loading branch information
gunnarvelle committed Jan 17, 2025
1 parent a23c7d1 commit 0b637c4
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: 'Release: learningpath-frontend'
name: "Release: learningpath-frontend"
on:
workflow_dispatch:
inputs: { }
inputs: {}
push:
branches:
- master
Expand All @@ -18,7 +18,7 @@ env:
NDLA_ENVIRONMENT: local
NDLA_HOME: ${{ github.workspace }}/ndla
NDLA_DEPLOY: ${{ github.workspace }}/ndla/deploy
NODE_OPTIONS: '--max_old_space_size=4096'
NODE_OPTIONS: "--max_old_space_size=4096"
COMPONENT: ${{ github.event.repository.name }}
GPG_KEY: ${{ secrets.DEPLOY_BLACKBOX_GPG_KEY_B64 }}
jobs:
Expand All @@ -36,10 +36,13 @@ jobs:
path: ndla/deploy
- uses: actions/setup-python@v4
with:
python-version: '3.11'
python-version: ${{ vars.PYTHON_VERSION }}
- uses: abatilo/actions-poetry@v2
with:
poetry-version: "1.6.1"
poetry-version: ${{ vars.POETRY_VERSION }}
- uses: hashicorp/setup-terraform@v3
with:
terraform_version: ${{ vars.TERRAFORM_VERSION }}
- name: Setup ~/bin directory
run: |
mkdir -p /home/runner/bin
Expand Down

0 comments on commit 0b637c4

Please sign in to comment.