-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
590737b
commit 4bb0c60
Showing
179 changed files
with
346 additions
and
181 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...es/production_beaker_react/projects/production_beaker_react-contracts/.copier-answers.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 0 additions & 38 deletions
38
examples/production_puya_react/.github/workflows/release.yaml
This file was deleted.
Oops, something went wrong.
14 changes: 0 additions & 14 deletions
14
examples/production_puya_react/.github/workflows/validate.yaml
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Release production_puya_react-contracts | ||
name: Release production_python_react-contracts | ||
|
||
on: | ||
workflow_call: | ||
|
@@ -25,7 +25,7 @@ jobs: | |
run: pipx install git+https://github.com/algorandfoundation/algokit-cli@feat/command_orchestration | ||
|
||
- name: Bootstrap dependencies | ||
run: algokit bootstrap all --project-name 'production_puya_react-contracts' | ||
run: algokit bootstrap all --project-name 'production_python_react-contracts' | ||
|
||
- name: Configure git | ||
shell: bash | ||
|
@@ -34,7 +34,7 @@ jobs: | |
git config --global user.email "[email protected]" && git config --global user.name "github-actions" | ||
- name: Deploy to testnet | ||
run: algokit deploy testnet --project-name 'production_puya_react-contracts' | ||
run: algokit deploy testnet --project-name 'production_python_react-contracts' | ||
env: | ||
# This is the account that becomes the creator of the contract | ||
DEPLOYER_MNEMONIC: ${{ secrets.DEPLOYER_MNEMONIC }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Validate production_puya_react-contracts | ||
name: Validate production_python_react-contracts | ||
|
||
on: | ||
workflow_call: | ||
|
@@ -26,7 +26,7 @@ jobs: | |
run: algokit localnet start | ||
|
||
- name: Bootstrap dependencies | ||
run: algokit bootstrap all --project-name 'production_puya_react-contracts' | ||
run: algokit bootstrap all --project-name 'production_python_react-contracts' | ||
|
||
- name: Configure git | ||
shell: bash | ||
|
@@ -35,25 +35,25 @@ jobs: | |
git config --global user.email "[email protected]" && git config --global user.name "github-actions" | ||
- name: Audit python dependencies | ||
run: algokit project run audit --project-name 'production_puya_react-contracts' | ||
run: algokit project run audit --project-name 'production_python_react-contracts' | ||
|
||
- name: Lint and format python dependencies | ||
run: algokit project run lint --project-name 'production_puya_react-contracts' | ||
run: algokit project run lint --project-name 'production_python_react-contracts' | ||
|
||
- name: Run tests | ||
shell: bash | ||
run: | | ||
set -o pipefail | ||
algokit project run test --project-name 'production_puya_react-contracts' | ||
algokit project run test --project-name 'production_python_react-contracts' | ||
- name: Build smart contracts | ||
run: algokit project run build --project-name 'production_puya_react-contracts' | ||
run: algokit project run build --project-name 'production_python_react-contracts' | ||
|
||
- name: Scan TEAL files for issues | ||
run: algokit project run audit-teal --project-name 'production_puya_react-contracts' | ||
run: algokit project run audit-teal --project-name 'production_python_react-contracts' | ||
|
||
- name: Check output stability of the smart contracts | ||
run: algokit project run ci-teal-diff --project-name 'production_puya_react-contracts' | ||
run: algokit project run ci-teal-diff --project-name 'production_python_react-contracts' | ||
|
||
- name: Run deployer against LocalNet | ||
run: algokit project deploy localnet --project-name 'production_puya_react-contracts' | ||
run: algokit project deploy localnet --project-name 'production_python_react-contracts' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
examples/production_python_react/.github/workflows/release.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Release | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths-ignore: | ||
- 'docs/**' | ||
- '**.md' | ||
- '.vscode/**' | ||
- '.idea/**' | ||
|
||
permissions: | ||
contents: read | ||
packages: read | ||
|
||
jobs: | ||
production_python_react-contracts-validate: | ||
name: Run production_python_react-contracts release | ||
secrets: inherit | ||
uses: ./.github/workflows/production_python_react-contracts-ci.yaml | ||
|
||
production_python_react-contracts-release: | ||
name: Run production_python_react-contracts release | ||
secrets: inherit | ||
uses: ./.github/workflows/production_python_react-contracts-cd.yaml | ||
needs: production_python_react-contracts-validate | ||
|
||
production_python_react-frontend-validate: | ||
name: Run production_python_react-frontend release | ||
secrets: inherit | ||
uses: ./.github/workflows/production_python_react-frontend-ci.yaml | ||
|
||
production_python_react-frontend-release: | ||
name: Run production_python_react-frontend release | ||
secrets: inherit | ||
uses: ./.github/workflows/production_python_react-frontend-cd.yaml | ||
needs: production_python_react-frontend-validate |
14 changes: 14 additions & 0 deletions
14
examples/production_python_react/.github/workflows/validate.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: Pull Request validation | ||
|
||
on: [pull_request] | ||
|
||
|
||
jobs: | ||
production_python_react-contracts-ci: | ||
name: Run production_python_react-contracts validation | ||
uses: ./.github/workflows/production_python_react-contracts-ci.yaml | ||
|
||
production_python_react-frontend-ci: | ||
name: Run production_python_react-frontend validation | ||
uses: ./.github/workflows/production_python_react-frontend-ci.yaml | ||
|
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.