Skip to content

Commit 656753e

Browse files
authored
Merge pull request #122 from CommitField/dev
Merge
2 parents 1d64d87 + fac43d8 commit 656753e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

โ€Ž.github/workflows/deploy.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ jobs:
2121
id: create_tag
2222
uses: mathieudutour/[email protected]
2323
with:
24-
github_token: ${{ secrets.TOKEN_GITHUB }}
24+
github_token: ${{ secrets.GITHUB_TOKEN }}
2525
- name: Create Release
2626
id: create_release
2727
uses: actions/create-release@v1
2828
env:
29-
GITHUB_TOKEN: ${{ secrets.TOKEN_GITHUB }}
29+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3030
with:
3131
tag_name: ${{ steps.create_tag.outputs.new_tag }}
3232
release_name: Release ${{ steps.create_tag.outputs.new_tag }}
@@ -46,7 +46,7 @@ jobs:
4646
with:
4747
registry: ghcr.io
4848
username: ${{ github.actor }}
49-
password: ${{ secrets.TOKEN_GITHUB }}
49+
password: ${{ secrets.GITHUB_TOKEN }}
5050
- name: set lower case owner name
5151
run: |
5252
echo "OWNER_LC=${OWNER,,}" >> ${GITHUB_ENV}

โ€Žsrc/main/resources/application.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ spring:
3333
frontUrl: "http://${custom.dev.cookieDomain}:5173"
3434
backUrl: "http://${custom.dev.cookieDomain}:${server.port}"
3535
prod:
36-
cookieDomain: cmf.seoez.site
36+
cookieDomain: cmfd.seoez.site
3737
frontUrl: "https://www.${custom.prod.cookieDomain}/"
3838
backUrl: "https://api.${custom.prod.cookieDomain}/"
3939
site:

0 commit comments

Comments
ย (0)