diff --git a/.github/workflows/build+test.yml b/.github/workflows/build+test.yml deleted file mode 100644 index aa8cbbf..0000000 --- a/.github/workflows/build+test.yml +++ /dev/null @@ -1,59 +0,0 @@ -name: Build/Test/Push - -on: - push: - branches: - - v3 - - devel - - main - tags: - - 'v*.*.*' - -jobs: - test: - name: Test - runs-on: ubuntu-latest - steps: - - name: Install Go - uses: actions/setup-go@v2 - with: - go-version: 1.13 - - - name: Retrieve code - uses: actions/checkout@v2 - - - name: Test - run: go test ./... - - publish: - name: Publish container images - runs-on: ubuntu-latest - steps: - - name: Retrieve code - uses: actions/checkout@v2 - - - name: Gitlab variables - id: vars - run: build/gitlab-vars - - - name: Login to GitHub Packages Docker Registry - uses: docker/login-action@v1 - with: - registry: ghcr.io - username: ${{ github.repository_owner }} - password: ${{ secrets.CR_PAT }} - - # Currently required, because buildx doesn't support auto-push from docker - - name: Set up builder - uses: docker/setup-buildx-action@v1 - id: buildx - - - name: Build and push image - uses: docker/build-push-action@v2 - with: - builder: ${{ steps.buildx.outputs.name }} - file: build/Containerfile - push: true - platforms: linux/amd64,linux/arm64 - tags: | - ghcr.io/nealey/simpleauth:${{ steps.vars.outputs.tag }} diff --git a/README.md b/README.md index b620b9a..f5358e7 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,6 @@ +The canonical home for this project is +https://git.woozle.org/neale/simpleauth + # Simple Auth All this does is present a login page.