Skip to content

Commit

Permalink
#39 Fix GitHub actions (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
docktermj authored Jan 5, 2024
1 parent 2809a6f commit 92e6e46
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 9 deletions.
3 changes: 1 addition & 2 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,4 @@ CODE_OF_CONDUCT.md
CONTRIBUTING.md
docker-compose.test.yml
LICENSE
PULL_REQUEST_TEMPLATE.md
README.md
README.md
1 change: 1 addition & 0 deletions .github/workflows/make-github-release-assets-darwin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+"
permissions: write-all
jobs:
build:
name: Publish binaries - darwin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,17 @@ on:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+"
permissions: write-all
jobs:
build:
name: Publish binaries
name: Publish binaries - linux
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Make versioned release files
- name: Make RPM/DEB files
run: make package
- name: Upload versioned packages to release assets
uses: svenstaro/upload-release-action@v2
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/make-go-github-file.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+"
permissions: write-all
jobs:
make-go-github-file:
uses: senzing-factory/build-resources/.github/workflows/make-go-github-file.yaml@main
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ FROM ${IMAGE_GO_BUILDER} as go_builder
ENV REFRESHED_AT=2023-10-02
LABEL Name="senzing/explain-builder" \
Maintainer="support@senzing.com" \
Version="0.0.5"
Version="0.2.0"

# Copy local files from the Git repository.

Expand Down Expand Up @@ -42,7 +42,7 @@ FROM ${IMAGE_FINAL} as final
ENV REFRESHED_AT=2023-08-01
LABEL Name="senzing/explain" \
Maintainer="support@senzing.com" \
Version="0.0.5"
Version="0.2.0"

# Copy local files from the Git repository.

Expand Down
6 changes: 3 additions & 3 deletions package.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ FROM ${IMAGE_GO_BUILDER} as go_builder
ENV REFRESHED_AT=2023-08-01
LABEL Name="senzing/explain-builder" \
Maintainer="support@senzing.com" \
Version="0.1.1"
Version="0.2.0"

# Build arguments.

Expand Down Expand Up @@ -48,7 +48,7 @@ FROM ${IMAGE_FPM_BUILDER} as fpm_builder
ENV REFRESHED_AT=2023-08-01
LABEL Name="senzing/explain-fpm-builder" \
Maintainer="support@senzing.com" \
Version="0.1.1"
Version="0.2.0"

# Use arguments from prior stage.

Expand Down Expand Up @@ -92,7 +92,7 @@ FROM ${IMAGE_FINAL} as final
ENV REFRESHED_AT=2023-08-01
LABEL Name="senzing/explain" \
Maintainer="support@senzing.com" \
Version="0.1.1"
Version="0.2.0"

# Use arguments from prior stage.

Expand Down

0 comments on commit 92e6e46

Please sign in to comment.