mirror of
https://github.com/workhardbekind/workout-challenge.git
synced 2026-07-04 09:23:32 -04:00
first commit
This commit is contained in:
commit
e7f627801f
152 changed files with 35352 additions and 0 deletions
29
.github/workflows/dev-deploy.yml
vendored
Normal file
29
.github/workflows/dev-deploy.yml
vendored
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
name: Development Deployment
|
||||
on:
|
||||
push:
|
||||
branches: [ 'dev' ]
|
||||
paths-ignore: [ '.github/**', 'docs/**', 'README.md' ]
|
||||
|
||||
jobs:
|
||||
|
||||
docker:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v2
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v2
|
||||
- name: Login to DockerHub
|
||||
uses: docker/login-action@v2
|
||||
with:
|
||||
username: ${{ secrets.DOCKER_USER }}
|
||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||
- name: Build and push
|
||||
uses: docker/build-push-action@v3
|
||||
with:
|
||||
context: .
|
||||
platforms: linux/arm64/v8,linux/amd64
|
||||
push: true
|
||||
tags: ${{secrets.DOCKER_USER}}/workout_challenge:dev
|
||||
Loading…
Add table
Add a link
Reference in a new issue