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] 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