Skip to content

Commit

Permalink
chore: Remove unused GitHub workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Junjiequan committed Jul 7, 2024
1 parent 8bb7a7b commit 0de706a
Show file tree
Hide file tree
Showing 8 changed files with 45 additions and 337 deletions.
43 changes: 0 additions & 43 deletions .github/workflows/end-to-end-tests-netlify.yaml

This file was deleted.

206 changes: 0 additions & 206 deletions .github/workflows/end-to-end-tests.yaml

This file was deleted.

10 changes: 0 additions & 10 deletions .github/workflows/localazy_download.yaml

This file was deleted.

11 changes: 0 additions & 11 deletions .github/workflows/localazy_upload.yaml

This file was deleted.

45 changes: 0 additions & 45 deletions .github/workflows/playwright-image-updates.yaml

This file was deleted.

45 changes: 45 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Build && Push

# Controls when the action will run.
on:
push:
branches:
- master

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Create image tags
id: meta
uses: docker/metadata-action@v4
with:
images: ghcr.io/scicatproject/matrix-react-sdk
flavor: latest=true # adds :latest tag to outputs.tags
tags: type=sha,format=long,prefix= # adds :<sha> tag to outputs.tags

- name: Build and push
id: docker_build
uses: docker/build-push-action@v3
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
9 changes: 0 additions & 9 deletions .github/workflows/release-drafter.yml

This file was deleted.

13 changes: 0 additions & 13 deletions .github/workflows/release-gitflow.yml

This file was deleted.

0 comments on commit 0de706a

Please sign in to comment.