Skip to content
This repository has been archived by the owner on Sep 19, 2024. It is now read-only.

Commit

Permalink
First try with actions
Browse files Browse the repository at this point in the history
  • Loading branch information
joel-schaal committed Sep 21, 2023
1 parent 3d8e18c commit bb1244c
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Build Docker image and push it to ECR
run-name: ${{ github.actor }} is pushing a new version of Omaha from ${{github.ref}}
on: [push]
jobs:
Deploy:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Read Settings
id: settings
uses: juliangruber/read-file-action@v1
with:
path: omaha_server/omaha_server/settings.py
- name: Echo settings
run: echo "${{ steps.settings.outputs.content }}"

0 comments on commit bb1244c

Please # to comment.