because I got bored of customising my CV for every job
1name: Build and publish Docker images
2
3on:
4 push:
5 tags:
6 - "*.*.*"
7
8jobs:
9 build-and-push:
10 runs-on: ubuntu-latest
11 permissions:
12 contents: read
13 packages: write
14
15 steps:
16 - uses: actions/checkout@v4
17
18 - name: Build and push images
19 env:
20 VERSION: ${{ github.ref_name }}
21 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22 run: ./ci/build-images.sh