18 lines
671 B
YAML
18 lines
671 B
YAML
on:
|
|
push:
|
|
jobs:
|
|
container:
|
|
runs-on: docker
|
|
env:
|
|
REMOTE_CODE_REF: '15e7af41fb56b4f19e1b6312cdd3fc697f1c0fc8'
|
|
steps:
|
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
|
- run: |
|
|
git clone https://github.com/SUNET/sunet-vcl-validator.git
|
|
cd sunet-vcl-validator
|
|
git checkout ${{ env.REMOTE_CODE_REF }}
|
|
- uses: https://platform.sunet.se/sunet-cdn/runner-action-kaniko@6afbf1ce25dc0f5e56242e1386c15aa1390a753b
|
|
with:
|
|
credential: ci-sunet-cdn:${{ secrets.CI_SUNET_CDN }}
|
|
image: sunet-cdn/sunet-vcl-validator:${{ env.REMOTE_CODE_REF }}
|
|
workdir: sunet-vcl-validator
|