From 2eb727e536904b01f6796188e6f919b697f0ac43 Mon Sep 17 00:00:00 2001
From: abyo666 <42591894+abyo666@users.noreply.github.com>
Date: Fri, 29 Apr 2022 10:43:23 +0800
Subject: [PATCH 1/6] Delete logo.svg
---
frontend/public/img/logo.svg | 147 -----------------------------------
1 file changed, 147 deletions(-)
delete mode 100644 frontend/public/img/logo.svg
diff --git a/frontend/public/img/logo.svg b/frontend/public/img/logo.svg
deleted file mode 100644
index 5e78eccf..00000000
--- a/frontend/public/img/logo.svg
+++ /dev/null
@@ -1,147 +0,0 @@
-
-
\ No newline at end of file
From 835284c473ddc17575fb6f99e53b664c2f754147 Mon Sep 17 00:00:00 2001
From: abyo666 <42591894+abyo666@users.noreply.github.com>
Date: Fri, 29 Apr 2022 10:43:50 +0800
Subject: [PATCH 2/6] Add files via upload
---
frontend/public/img/logo.svg | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
create mode 100644 frontend/public/img/logo.svg
diff --git a/frontend/public/img/logo.svg b/frontend/public/img/logo.svg
new file mode 100644
index 00000000..5d628818
--- /dev/null
+++ b/frontend/public/img/logo.svg
@@ -0,0 +1,24 @@
+
\ No newline at end of file
From 57789b79344099da7552e51a2301cbb4869ec289 Mon Sep 17 00:00:00 2001
From: abyo666 <42591894+abyo666@users.noreply.github.com>
Date: Fri, 29 Apr 2022 10:44:47 +0800
Subject: [PATCH 3/6] Update logo.svg
---
frontend/public/img/logo.svg | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/frontend/public/img/logo.svg b/frontend/public/img/logo.svg
index 5d628818..c5414b52 100644
--- a/frontend/public/img/logo.svg
+++ b/frontend/public/img/logo.svg
@@ -17,8 +17,5 @@
inkscape:version="0.92.3 (2405546, 2018-03-11)"
inkscape:export-filename="/home/umarcor/filebrowser/logo/icon_raw.svg.png"
inkscape:export-xdpi="96"
- inkscape:export-ydpi="96">image/svg+xml
-
\ No newline at end of file
+ inkscape:export-ydpi="96">
+
From d3d12ebaee7e7e6b17777712bcfa1020580c62cf Mon Sep 17 00:00:00 2001
From: abyo666 <42591894+abyo666@users.noreply.github.com>
Date: Fri, 29 Apr 2022 10:47:06 +0800
Subject: [PATCH 4/6] Create main.yml
---
.github/workflows/main.yml | 143 +++++++++++++++++++++++++++++++++++++
1 file changed, 143 insertions(+)
create mode 100644 .github/workflows/main.yml
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
new file mode 100644
index 00000000..5ac66cf3
--- /dev/null
+++ b/.github/workflows/main.yml
@@ -0,0 +1,143 @@
+Skip to content
+Search or jump to…
+Pull requests
+Issues
+Marketplace
+Explore
+
+@abyo666
+filebrowser
+/
+filebrowser
+Public
+Code
+Issues
+165
+Pull requests
+20
+Discussions
+Actions
+Security
+Insights
+filebrowser/.github/workflows/main.yaml
+@Jmainguy
+Jmainguy chore: fix typos
+Latest commit 6fffcba on 27 Jan
+ History
+ 2 contributors
+@o1egl@Jmainguy
+ 100 lines (96 sloc) 2.3 KB
+
+name: main
+
+on:
+ push:
+ branches:
+ - 'master'
+ tags:
+ - 'v*'
+ pull_request:
+
+jobs:
+# linters
+ lint-frontend:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - uses: actions/setup-node@v2
+ with:
+ node-version: '14'
+ - run: make lint-frontend
+ lint-backend:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - uses: actions/setup-go@v2
+ with:
+ go-version: 1.17
+ - run: make lint-backend
+ lint-commits:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ fetch-depth: 0
+ - uses: actions/setup-node@v2
+ with:
+ node-version: '14'
+ - run: make lint-commits
+ lint:
+ runs-on: ubuntu-latest
+ needs: [lint-frontend, lint-backend, lint-commits]
+ steps:
+ - run: echo "done"
+
+# tests
+ test-frontend:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - uses: actions/setup-node@v2
+ with:
+ node-version: '14'
+ - run: make test-frontend
+ test-backend:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - uses: actions/setup-go@v2
+ with:
+ go-version: 1.17
+ - run: make test-backend
+ test:
+ runs-on: ubuntu-latest
+ needs: [test-frontend, test-backend]
+ steps:
+ - run: echo "done"
+
+# release
+ release:
+ runs-on: ubuntu-latest
+ needs: [lint, test]
+ if: startsWith(github.event.ref, 'refs/tags/v')
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ fetch-depth: 0
+ - uses: actions/setup-go@v2
+ with:
+ go-version: 1.17
+ - uses: actions/setup-node@v2
+ with:
+ node-version: '14'
+ - name: Set up QEMU
+ uses: docker/setup-qemu-action@v1
+ - name: Set up Docker Buildx
+ uses: docker/setup-buildx-action@v1
+ - name: Build frontend
+ run: make build-frontend
+ - name: Login to Docker Hub
+ uses: docker/login-action@v1
+ with:
+ username: ${{ secrets.DOCKERHUB_USERNAME }}
+ password: ${{ secrets.DOCKERHUB_TOKEN }}
+ - name: Run GoReleaser
+ uses: goreleaser/goreleaser-action@v2
+ with:
+ version: latest
+ args: release --rm-dist
+ env:
+ GITHUB_TOKEN: ${{ secrets.GH_PAT }}
+© 2022 GitHub, Inc.
+Terms
+Privacy
+Security
+Status
+Docs
+Contact GitHub
+Pricing
+API
+Training
+Blog
+About
+Loading complete
From 71c46d083f3db70a8d45397149f20f1bd65627ea Mon Sep 17 00:00:00 2001
From: abyo666 <42591894+abyo666@users.noreply.github.com>
Date: Fri, 29 Apr 2022 10:51:42 +0800
Subject: [PATCH 5/6] Delete main.yml
---
.github/workflows/main.yml | 143 -------------------------------------
1 file changed, 143 deletions(-)
delete mode 100644 .github/workflows/main.yml
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
deleted file mode 100644
index 5ac66cf3..00000000
--- a/.github/workflows/main.yml
+++ /dev/null
@@ -1,143 +0,0 @@
-Skip to content
-Search or jump to…
-Pull requests
-Issues
-Marketplace
-Explore
-
-@abyo666
-filebrowser
-/
-filebrowser
-Public
-Code
-Issues
-165
-Pull requests
-20
-Discussions
-Actions
-Security
-Insights
-filebrowser/.github/workflows/main.yaml
-@Jmainguy
-Jmainguy chore: fix typos
-Latest commit 6fffcba on 27 Jan
- History
- 2 contributors
-@o1egl@Jmainguy
- 100 lines (96 sloc) 2.3 KB
-
-name: main
-
-on:
- push:
- branches:
- - 'master'
- tags:
- - 'v*'
- pull_request:
-
-jobs:
-# linters
- lint-frontend:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v2
- - uses: actions/setup-node@v2
- with:
- node-version: '14'
- - run: make lint-frontend
- lint-backend:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v2
- - uses: actions/setup-go@v2
- with:
- go-version: 1.17
- - run: make lint-backend
- lint-commits:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v2
- with:
- fetch-depth: 0
- - uses: actions/setup-node@v2
- with:
- node-version: '14'
- - run: make lint-commits
- lint:
- runs-on: ubuntu-latest
- needs: [lint-frontend, lint-backend, lint-commits]
- steps:
- - run: echo "done"
-
-# tests
- test-frontend:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v2
- - uses: actions/setup-node@v2
- with:
- node-version: '14'
- - run: make test-frontend
- test-backend:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v2
- - uses: actions/setup-go@v2
- with:
- go-version: 1.17
- - run: make test-backend
- test:
- runs-on: ubuntu-latest
- needs: [test-frontend, test-backend]
- steps:
- - run: echo "done"
-
-# release
- release:
- runs-on: ubuntu-latest
- needs: [lint, test]
- if: startsWith(github.event.ref, 'refs/tags/v')
- steps:
- - uses: actions/checkout@v2
- with:
- fetch-depth: 0
- - uses: actions/setup-go@v2
- with:
- go-version: 1.17
- - uses: actions/setup-node@v2
- with:
- node-version: '14'
- - name: Set up QEMU
- uses: docker/setup-qemu-action@v1
- - name: Set up Docker Buildx
- uses: docker/setup-buildx-action@v1
- - name: Build frontend
- run: make build-frontend
- - name: Login to Docker Hub
- uses: docker/login-action@v1
- with:
- username: ${{ secrets.DOCKERHUB_USERNAME }}
- password: ${{ secrets.DOCKERHUB_TOKEN }}
- - name: Run GoReleaser
- uses: goreleaser/goreleaser-action@v2
- with:
- version: latest
- args: release --rm-dist
- env:
- GITHUB_TOKEN: ${{ secrets.GH_PAT }}
-© 2022 GitHub, Inc.
-Terms
-Privacy
-Security
-Status
-Docs
-Contact GitHub
-Pricing
-API
-Training
-Blog
-About
-Loading complete
From 854c720b0000d7feea26447214349275c92a5d8f Mon Sep 17 00:00:00 2001
From: abyo666 <42591894+abyo666@users.noreply.github.com>
Date: Fri, 29 Apr 2022 10:51:54 +0800
Subject: [PATCH 6/6] Create main.yml
---
.github/workflows/main.yml | 100 +++++++++++++++++++++++++++++++++++++
1 file changed, 100 insertions(+)
create mode 100644 .github/workflows/main.yml
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
new file mode 100644
index 00000000..f6b22f07
--- /dev/null
+++ b/.github/workflows/main.yml
@@ -0,0 +1,100 @@
+name: main
+
+on:
+ push:
+ branches:
+ - 'master'
+ tags:
+ - 'v*'
+ pull_request:
+
+jobs:
+# linters
+ lint-frontend:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - uses: actions/setup-node@v2
+ with:
+ node-version: '14'
+ - run: make lint-frontend
+ lint-backend:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - uses: actions/setup-go@v2
+ with:
+ go-version: 1.17
+ - run: make lint-backend
+ lint-commits:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ fetch-depth: 0
+ - uses: actions/setup-node@v2
+ with:
+ node-version: '14'
+ - run: make lint-commits
+ lint:
+ runs-on: ubuntu-latest
+ needs: [lint-frontend, lint-backend, lint-commits]
+ steps:
+ - run: echo "done"
+
+# tests
+ test-frontend:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - uses: actions/setup-node@v2
+ with:
+ node-version: '14'
+ - run: make test-frontend
+ test-backend:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - uses: actions/setup-go@v2
+ with:
+ go-version: 1.17
+ - run: make test-backend
+ test:
+ runs-on: ubuntu-latest
+ needs: [test-frontend, test-backend]
+ steps:
+ - run: echo "done"
+
+# release
+ release:
+ runs-on: ubuntu-latest
+ needs: [lint, test]
+ if: startsWith(github.event.ref, 'refs/tags/v')
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ fetch-depth: 0
+ - uses: actions/setup-go@v2
+ with:
+ go-version: 1.17
+ - uses: actions/setup-node@v2
+ with:
+ node-version: '14'
+ - name: Set up QEMU
+ uses: docker/setup-qemu-action@v1
+ - name: Set up Docker Buildx
+ uses: docker/setup-buildx-action@v1
+ - name: Build frontend
+ run: make build-frontend
+ - name: Login to Docker Hub
+ uses: docker/login-action@v1
+ with:
+ username: ${{ secrets.DOCKERHUB_USERNAME }}
+ password: ${{ secrets.DOCKERHUB_TOKEN }}
+ - name: Run GoReleaser
+ uses: goreleaser/goreleaser-action@v2
+ with:
+ version: latest
+ args: release --rm-dist
+ env:
+ GITHUB_TOKEN: ${{ secrets.GH_PAT }}