Skip to content

Commit

Permalink
Merge pull request #253 from EresDevOrg/development
Browse files Browse the repository at this point in the history
fix: use new deploy workflow to use new naming
  • Loading branch information
rndquu authored Jun 18, 2024
2 parents aa003e2 + 81e43b7 commit c124c0a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,8 @@ jobs:
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: static
path: static
name: full-stack-app
path: |
static
package.json
yarn.lock
5 changes: 3 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,14 @@ jobs:
with:
repository: ${{ github.repository }}
production_branch: ${{ github.event.repository.default_branch }}
build_artifact_name: "static"
output_directory: "static"
build_artifact_name: "full-stack-app"
output_directory: "full-stack-app"
current_branch: ${{ github.event.workflow_run.head_branch }}
cloudflare_account_id: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
cloudflare_api_token: ${{ secrets.CLOUDFLARE_API_TOKEN }}
commit_sha: ${{ github.event.workflow_run.head_sha }}
workflow_run_id: ${{ github.event.workflow_run.id }}
statics_directory: "static"

- name: Check out repository
uses: actions/checkout@v4
Expand Down

0 comments on commit c124c0a

Please sign in to comment.