mirror of
https://github.com/neoStudiosLCE/neoLegacy.git
synced 2026-06-26 04:07:01 +00:00
fix(workdlow): update to Ubuntu 22.04 instead of "linux"
This commit is contained in:
parent
2e8b4b43b8
commit
17154f4115
|
|
@ -17,7 +17,9 @@ concurrency:
|
|||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: linux
|
||||
runs-on: docker
|
||||
container:
|
||||
image: ubuntu:22.04
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: https://code.forgejo.org/actions/checkout@v4
|
||||
|
|
@ -60,7 +62,9 @@ jobs:
|
|||
|
||||
release:
|
||||
needs: build
|
||||
runs-on: latest
|
||||
runs-on: docker
|
||||
container:
|
||||
image: ubuntu:22.04
|
||||
steps:
|
||||
- name: Download build artifacts
|
||||
uses: https://code.forgejo.org/actions/download-artifact@v3
|
||||
|
|
@ -123,7 +127,9 @@ jobs:
|
|||
cleanup:
|
||||
needs: [build, release]
|
||||
if: always()
|
||||
runs-on: linux
|
||||
runs-on: docker
|
||||
container:
|
||||
image: ubuntu:22.04
|
||||
steps:
|
||||
- name: Delete build artifacts
|
||||
env:
|
||||
|
|
|
|||
Loading…
Reference in a new issue