Skip to content

Commit

Permalink
fix: disable deploy scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Sv443 committed Mar 4, 2024
1 parent 8090124 commit cbed93f
Show file tree
Hide file tree
Showing 4 changed files with 105 additions and 105 deletions.
51 changes: 0 additions & 51 deletions .github/workflows/build-deploy-prod.yml

This file was deleted.

51 changes: 51 additions & 0 deletions .github/workflows/build-deploy-prod.yml.disabled
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: "Build and Deploy to Prod"

on:
workflow_dispatch:

concurrency: ${{ github.workflow }}-${{ github.ref }}

jobs:
publish:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- run: echo "TODO"
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: Determine latest version
run: echo "APP_VERSION=$(git describe --tags || git rev-parse --short HEAD)" >> $GITHUB_ENV

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

- name: Build docker image and push
uses: docker/build-push-action@v4
with:
context: ./
file: ./Dockerfile
build-args: APP_VERSION=${{ env.APP_VERSION }}
push: true
tags: ghcr.io/sv443-network/jokeapi:latest

- name: Delete old packages
uses: actions/delete-package-versions@v4
with:
package-name: ${{ github.event.repository.name }}
package-type: "container"
min-versions-to-keep: 3
delete-only-untagged-versions: "true"

- name: Deploy to prod
run: echo "TODO Trigger prod deployment here"
54 changes: 0 additions & 54 deletions .github/workflows/build-deploy-stage.yml

This file was deleted.

54 changes: 54 additions & 0 deletions .github/workflows/build-deploy-stage.yml.disabled
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: "Build and Deploy to Stage"

on:
workflow_dispatch:
push:
branches:
- v3

concurrency: ${{ github.workflow }}-${{ github.ref }}

jobs:
publish:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- run: echo "TODO"
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: Determine latest version
run: echo "APP_VERSION=$(git describe --tags || git rev-parse --short HEAD)" >> $GITHUB_ENV

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

- name: Build docker image and push
uses: docker/build-push-action@v4
with:
context: ./
file: ./Dockerfile
build-args: APP_VERSION=${{ env.APP_VERSION }}
push: true
tags: ghcr.io/sv443-network/jokeapi-stage:latest

- name: Delete old packages
uses: actions/delete-package-versions@v4
with:
package-name: ${{ github.event.repository.name }}
package-type: "container"
min-versions-to-keep: 3
delete-only-untagged-versions: "true"

- name: Deploy to stage
run: echo "TODO Trigger stage deployment here"

0 comments on commit cbed93f

Please sign in to comment.