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

Devel #29

Merged
merged 2 commits into from
May 17, 2024
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
1 change: 1 addition & 0 deletions .github/workflows/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
uses: ./.github/workflows/setup-predeploy-env.yml
with:
environment: preview
secrets: inherit
Deploy-Preview:
runs-on: ubuntu-latest
needs: setup-preview-environment
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
uses: ./.github/workflows/setup-predeploy-env.yml
with:
environment: production
secrets: inherit
Deploy-Production:
runs-on: ubuntu-latest
needs: setup-production-environment
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/setup-predeploy-env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
if: ${{ inputs.environment == 'preview' }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Copy/Overwrite robots.txt with development robots.txt
run: cp -v public/dev/robots.txt public/robots.txt
- name: Copy/Overwrite sitemap.xml with development sitemap.xml
Expand Down Expand Up @@ -40,7 +40,7 @@ jobs:
runs-on: ubuntu-latest
if: ${{ inputs.environment == 'production' }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Copy/Overwrite robots.txt with production robots.txt
run: cp -v public/prod/robots.txt public/robots.txt
- name: Copy/Overwrite sitemap.xml with production sitemap.xml
Expand Down
Loading