Skip to content

try again

try again #9

Workflow file for this run

name: Build & deploy
on:
push:
branches:
- main
jobs:
build-and-push-container:
name: Build and Push Shortner Container
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build docker container
uses: docker/build-push-action@v5
with:
context: ./
load: true
tags: |
ghcr.io/scout-ch/thilo-shortener/thilo_shortener:latest
- name: Push docker container
uses: docker/build-push-action@v5
with:
push: true
context: ./
tags: |
ghcr.io/scout-ch/thilo-shortener/thilo_shortener:latest
- name: Run GetEnv command
uses: DovnarAlexander/github-actions-jelastic@master
with:
jelastic_url: app.mycloud.by
jelastic_username: ${{ secrets.JELASTIC_USERNAME }}
jelastic_password: ${{ secrets.JELASTIC_TOKEN }}
task: environment/control/getenvs