aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/build-workstation.yml
blob: 678c5d5185578108d5e6649c27af53933d9ea4b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 }}