We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f64b305 commit d2dd566Copy full SHA for d2dd566
.github/workflows/ghcr_emod_run_env.yml
@@ -0,0 +1,27 @@
1
+name: Create and publish EMOD environment
2
+
3
+on:
4
+ # Allows manual run from the Actions tab
5
+ workflow_dispatch:
6
7
+env:
8
+ REGISTRY: ghcr.io
9
+ IMAGE_NAME: emod_runtime_env
10
11
+jobs:
12
+ build-and-push-image:
13
+ name: Build and push Docker image
14
+ runs-on: ubuntu-latest
15
+ permissions:
16
+ packages: write
17
+ attestations: write
18
+ id-token: write
19
+ steps:
20
+ - name: Checkout repository
21
+ uses: actions/checkout@v6
22
+ - name: Log in to Container registry
23
+ uses: docker/login-action@v3
24
+ with:
25
+ registry: ${{ env.REGISTRY }}
26
+ username: ${{ github.actor }}
27
+ password: ${{ secrets.GITHUB_TOKEN }}
0 commit comments