aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authoralex <alex@pdp7.net>2023-05-06 21:24:18 +0200
committerAlex Corcoles <alex@corcoles.net>2023-05-06 19:36:36 +0000
commit18db8ec941a0573e96446321ccb66975719884b8 (patch)
treed927b16f998c7d5dd24cbea6e6aca0e52256fae6 /.github
parent0e403bdfae5a37ccdd92d3c3afe35fe66ea5bf65 (diff)
Draft workstation build
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build-workstation.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/build-workstation.yml b/.github/workflows/build-workstation.yml
new file mode 100644
index 00000000..678c5d51
--- /dev/null
+++ b/.github/workflows/build-workstation.yml
@@ -0,0 +1,17 @@
+on:
+ - push
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+ with:
+ submodules: true
+ - run: |
+ cd workstation
+ ./build_workstation
+ podman login -u="alexpdp7+github_workstation_builder" -p="$ROBOT_TOKEN" quay.io
+ podman push localhost/workstation:latest quay.io/alexpdp7/workstation:latest
+ env:
+ ROBOT_TOKEN: ${{ secrets.ROBOT_TOKEN }}