--- on: [push] jobs: build-image: runs-on: host steps: - name: Test OS shell: js run: | console.log(process.env.RUNNER_OS) - uses: actions/checkout@v3 - uses: https://github.com/redhat-actions/buildah-build@v2 with: containerfiles: Containerfile image: ${{ github.repository }} registry: gitea.sebastian-tobie.de tags: latest ${{ github.run_number }} - uses: https://github.com/redhat-actions/push-to-registry@v2.8 with: image: ${{ github.repository }} registry: gitea.sebastian-tobie.de tags: latest ${{ github.run_number }} password: ${{ github.token }}