Fixed Matrix Logo
All checks were successful
Deploy to production / Build (push) Successful in 15m28s
All checks were successful
Deploy to production / Build (push) Successful in 15m28s
This commit is contained in:
parent
7884401576
commit
e1e932eee1
3 changed files with 8 additions and 16 deletions
|
|
@ -7,15 +7,16 @@ on:
|
|||
|
||||
jobs:
|
||||
Build:
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: docker
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@master
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@master
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: '20'
|
||||
cache: npm
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm install
|
||||
|
|
@ -31,4 +32,7 @@ jobs:
|
|||
|
||||
- name: Connect to server
|
||||
run: |
|
||||
apt-get update &&
|
||||
apt-get install -y rsync &&
|
||||
rsync --version &&
|
||||
rsync -avz --no-perms --no-times --delete -e "ssh -o StrictHostKeyChecking=no -p ${{ secrets.SSH_PORT }}" dist/ ${{ secrets.SSH_USERNAME }}@${{ secrets.SSH_HOST }}:octubre/main/
|
||||
12
.github/dependabot.yml
vendored
12
.github/dependabot.yml
vendored
|
|
@ -1,12 +0,0 @@
|
|||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: "npm" # package manager
|
||||
directory: "/" # location of package manifests
|
||||
schedule:
|
||||
interval: "weekly"
|
||||
open-pull-requests-limit: 1
|
||||
groups:
|
||||
all-dependencies:
|
||||
patterns:
|
||||
- "*"
|
||||
group-name: "All dependencies"
|
||||
|
|
@ -60,7 +60,7 @@ const SocialButtons: React.FC = () => {
|
|||
rel="noopener noreferrer"
|
||||
aria-label={"Matrix"}
|
||||
className={styles.socialButton}>
|
||||
<img src="public/matrix.svg" className={styles.matrixIcon} alt={"Matrix Logo"}/>
|
||||
<img src="/matrix.svg" className={styles.matrixIcon} alt={"Matrix Logo"}/>
|
||||
</a>
|
||||
</div>
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue