startpage

Start page for browsers
git clone https://codeberg.org/night0721/startpage
Log | Files | Refs | README

commit b93a6c14ac69d8cf7f45110dccdeb2a69493981f
parent 350c160a9867ab737b8af194fd2ac95b05b0e238
Author: night0721 <[email protected]>
Date:   Sat, 20 Jan 2024 15:37:08 +0000

remove workflow

Diffstat:
D.github/workflows/publish.yml | 51---------------------------------------------------
1 file changed, 0 insertions(+), 51 deletions(-)

diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml @@ -1,51 +0,0 @@ -name: "publish image" - -on: - push: - branches: ["master"] - -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true - -defaults: - run: - shell: bash - -jobs: - package: - permissions: - contents: read - packages: write - runs-on: ubuntu-latest - steps: - - - name: generate image tag - id: tag - run: | - sha="${GITHUB_SHA::7}" - unix="$(date +%s)" - echo "tag=$sha-$unix" >> $GITHUB_OUTPUT - - - name: login to ghcr - uses: docker/login-action@v2 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: checkout repo - uses: actions/checkout@v3 - - - name: set up docker buildx - uses: docker/setup-buildx-action@v2 - - - name: build and push image - uses: docker/build-push-action@v3 - with: - context: . - platforms: linux/amd64,linux/arm64 - push: ${{ github.event_name != 'pull_request' }} - tags: | - ghcr.io/${{ github.repository }}:${{ steps.tag.outputs.tag }} - ghcr.io/${{ github.repository }}:latest