Skip to content

Commit 490ae9d

Browse files
committed
Merge tag '1.0.11' into feat/use-wallet-v4
1.0.11
2 parents 1ff0bd4 + f34f4ee commit 490ae9d

File tree

12 files changed

+24
-24
lines changed

12 files changed

+24
-24
lines changed

examples/cloud_provider/production_react_netlify/.github/workflows/production-react-netlify-cd.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
run: pipx install algokit
4141

4242
- name: Bootstrap dependencies
43-
run: algokit project bootstrap all --project-name 'production_react_netlify'
43+
run: algokit project bootstrap all
4444

4545
- name: Publish to Netlify
4646
env:

examples/cloud_provider/production_react_netlify/.github/workflows/production-react-netlify-ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,16 @@ jobs:
3333
run: pipx install algokit
3434

3535
- name: Install dependencies
36-
run: algokit project bootstrap all --project-name 'production_react_netlify'
36+
run: algokit project bootstrap all
3737

3838

3939
- name: Run linters
40-
run: algokit project run lint --project-name 'production_react_netlify'
40+
run: algokit project run lint
4141

4242

4343
- name: Run unit tests
44-
run: algokit project run test --project-name 'production_react_netlify'
44+
run: algokit project run test
4545

4646

4747
- name: Build
48-
run: algokit project run build --project-name 'production_react_netlify'
48+
run: algokit project run build

examples/cloud_provider/production_react_netlify/tailwind.config.js renamed to examples/cloud_provider/production_react_netlify/tailwind.config.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ module.exports = {
88
themes: ['lofi'],
99
},
1010
plugins: [require('daisyui')],
11-
}
11+
}

examples/cloud_provider/production_react_vercel/.github/workflows/production-react-vercel-cd.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
run: pipx install algokit
4141

4242
- name: Bootstrap dependencies
43-
run: algokit project bootstrap all --project-name 'production_react_vercel'
43+
run: algokit project bootstrap all
4444

4545
- name: Publish to Vercel
4646
env:

examples/cloud_provider/production_react_vercel/.github/workflows/production-react-vercel-ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,16 @@ jobs:
3333
run: pipx install algokit
3434

3535
- name: Install dependencies
36-
run: algokit project bootstrap all --project-name 'production_react_vercel'
36+
run: algokit project bootstrap all
3737

3838

3939
- name: Run linters
40-
run: algokit project run lint --project-name 'production_react_vercel'
40+
run: algokit project run lint
4141

4242

4343
- name: Run unit tests
44-
run: algokit project run test --project-name 'production_react_vercel'
44+
run: algokit project run test
4545

4646

4747
- name: Build
48-
run: algokit project run build --project-name 'production_react_vercel'
48+
run: algokit project run build

examples/cloud_provider/production_react_vercel/tailwind.config.js renamed to examples/cloud_provider/production_react_vercel/tailwind.config.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ module.exports = {
88
themes: ['lofi'],
99
},
1010
plugins: [require('daisyui')],
11-
}
11+
}

examples/production_react/.github/workflows/production-react-cd.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@ jobs:
4040
run: pipx install algokit
4141

4242
- name: Bootstrap dependencies
43-
run: algokit project bootstrap all --project-name 'production_react'
43+
run: algokit project bootstrap all
4444

examples/production_react/.github/workflows/production-react-ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,16 @@ jobs:
3333
run: pipx install algokit
3434

3535
- name: Install dependencies
36-
run: algokit project bootstrap all --project-name 'production_react'
36+
run: algokit project bootstrap all
3737

3838

3939
- name: Run linters
40-
run: algokit project run lint --project-name 'production_react'
40+
run: algokit project run lint
4141

4242

4343
- name: Run unit tests
44-
run: algokit project run test --project-name 'production_react'
44+
run: algokit project run test
4545

4646

4747
- name: Build
48-
run: algokit project run build --project-name 'production_react'
48+
run: algokit project run build

examples/production_react/tailwind.config.js renamed to examples/production_react/tailwind.config.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ module.exports = {
88
themes: ['lofi'],
99
},
1010
plugins: [require('daisyui')],
11-
}
11+
}

template_content/{% if use_github_actions %}.github{% endif %}/workflows/{% if cloud_provider != none %}{% include pathjoin('includes', 'project_name_kebab.jinja') %}-cd.yaml{% endif %}.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
run: pipx install algokit
4646

4747
- name: Bootstrap dependencies
48-
run: algokit project bootstrap all --project-name '{{ project_name }}'
48+
run: algokit project bootstrap all {% if use_workspace %}--project-name '{{ project_name }}'{% endif %}
4949
{% if cloud_provider == 'vercel' %}
5050
- name: Publish to Vercel
5151
env:

0 commit comments

Comments
 (0)