-
-
Notifications
You must be signed in to change notification settings - Fork 3
47 lines (39 loc) · 1.18 KB
/
build_and_release_for_ncdu.yaml
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
name: "Build and release for ncdu"
on:
push:
branches:
- main
paths:
- "ncdu/**"
jobs:
create:
name: "Creates the newest release by version"
runs-on: "ubuntu-latest"
steps:
- name: Checkout project
uses: actions/[email protected]
# New step to read the VERSION file and set the version as an output
- name: Get the version
id: get_version
run: echo "ncdu_version=$(cat ncdu/VERSION)" >> $GITHUB_ENV
- name: Set up QEMU
uses: docker/setup-qemu-action@master
with:
platforms: all
- name: Set up Docker Build
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v3
with:
push: true
platforms: linux/amd64,linux/arm64
context: ./ncdu
file: ./ncdu/Dockerfile
tags: |
bigbeartechworld/big-bear-ncdu:latest
bigbeartechworld/big-bear-ncdu:${{ env.ncdu_version }}