Skip to content

Update docker-compose_install.sh #229

Update docker-compose_install.sh

Update docker-compose_install.sh #229

Workflow file for this run

name: Build-RYSEN
on:
push:
branches: master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v2
- name: install buildx
id: buildx
uses: crazy-max/ghaction-docker-buildx@v1
with:
version: latest
- name: login to docker hub
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin
- name: build the image
run: |
docker buildx build --push \
--tag shaymez/rysen:latest \
--platform linux/i386,linux/amd64,linux/arm64 .