update action tag and update urls
All checks were successful
Actions / Build Plugins (push) Successful in 43s

This commit is contained in:
cswimr 2025-03-27 15:22:46 -04:00
parent ea064f0184
commit 6a48617294
Signed by: CoastalCommits
GPG key ID: 7E73189F651A553F

View file

@ -11,12 +11,12 @@ jobs:
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Set up SSH key
uses: ssh-agent-fork@tag-forgejo
uses: ssh-agent-fork@v9.0.1
with:
ssh-private-key: ${{ secrets.DEPLOY_KEY }}
instance-urls: "www.coastalcommits.com"
instance-urls: "c.csw.im"
- name: Add instance URLs to known_hosts
run: ssh-keyscan -H www.coastalcommits.com >> ~/.ssh/known_hosts
run: ssh-keyscan -H c.csw.im >> ~/.ssh/known_hosts
- name: Setup Node.js
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
with:
@ -25,8 +25,8 @@ jobs:
- name: Configure Git
run: |
git config --global user.name "${GITHUB_ACTOR}"
git config --global user.email "${GITHUB_ACTOR}@noreply@coastalcommits.com"
git remote set-url origin git@www.coastalcommits.com:${{ github.repository }}
git config --global user.email "${GITHUB_ACTOR}@noreply@c.csw.im"
git remote set-url origin git@c.csw.im:${{ github.repository }}
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Publish plugins to Release branch