We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47fdff0 commit 7018f5cCopy full SHA for 7018f5c
.github/workflows/ci.yaml
@@ -0,0 +1,25 @@
1
+name: Deploy
2
+
3
+on:
4
+ push:
5
+ # branches: [main]
6
7
+jobs:
8
+ ci:
9
+ runs-on: ubuntu-latest
10
+ strategy:
11
+ matrix:
12
+ project: [fwxvi, fwxvii]
13
+ steps:
14
+ - uses: actions/checkout@v5
15
+ name: Checkout Repository
16
+ - uses: cachix/install-nix-action@v31
17
+ name: Install Nix
18
+ with:
19
+ github_access_token: ${{ secrets.GITHUB_TOKEN }}
20
+ - name: Build and Tag Docker Image
21
+ env:
22
+ PROJECT: ${{ matrix.project }}
23
+ VERSION: ${{ github.ref }}
24
+ run: ./${{ matrix.project }}/build
25
fwxvi/build
@@ -3,6 +3,6 @@
set -euo pipefail
pushd fwxvi
-docker build -f Containerfile -t fwxvi:latest
+docker build -f Containerfile -t fwxvi:latest .
popd
0 commit comments