forked from green-coding-solutions/green-metrics-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
63 lines (53 loc) · 1.91 KB
/
Copy pathbuild-codespace-container.yml
File metadata and controls
63 lines (53 loc) · 1.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: Build Codespace Container
on:
workflow_dispatch:
jobs:
build-and-push-containers:
runs-on: ubuntu-24.04
permissions:
packages: write
contents: read
steps:
- name: Eco CI Energy Estimation - Initialize
uses: green-coding-solutions/eco-ci-energy-estimation@main
with:
task: start-measurement
project: "Green Metrics Tool"
machine: "ubuntu-latest"
tags: "CI/CD,Build-Codespace-Container-Workflow"
gmt-api-token: ${{ secrets.GMT_API_TOKEN }}
electricitymaps-api-token: ${{ secrets.ELECTRICITYMAPS_TOKEN }}
- name: Checkout repository
uses: actions/checkout@v7
- name: Set up QEMU
uses: docker/setup-qemu-action@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
- name: Login to Docker Registry
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
# - name: Build and push gunicorn container
# uses: docker/build-push-action@v5
# with:
# context: ./docker
# file: ./docker/Dockerfile-gunicorn
# push: true
# tags: ghcr.io/green-coding-berlin/green-coding-gunicorn-container:latest
- name: Build and push Docker container
uses: docker/build-push-action@v7
with:
context: .
file: ./.devcontainer/containerized/Dockerfile
push: true
tags: ghcr.io/green-coding-solutions/codespace-container:latest
- name: Eco CI Energy Estimation - Get Measurement
uses: green-coding-solutions/eco-ci-energy-estimation@main
with:
task: get-measurement
- name: Eco CI Energy Estimation - End Measurement
uses: green-coding-solutions/eco-ci-energy-estimation@main
with:
task: display-results