Skip to content

Commit

Permalink
Merge pull request #58 from DIG-Network/release/v0.0.1-alpha.63
Browse files Browse the repository at this point in the history
Release/v0.0.1 alpha.63
  • Loading branch information
MichaelTaylor3D authored Oct 26, 2024
2 parents 49626b9 + 007cd4f commit 6937316
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 9 deletions.
17 changes: 12 additions & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,15 @@ jobs:

- name: Build and Push Docker Images
run: |
docker buildx build \
--platform linux/amd64,linux/arm64 \
-t ${{ vars.DOCKER_NAMESPACE }}/${{ env.PROJECT_NAME }}:${{ env.DOCKER_TAG }} \
-t ${{ vars.DOCKER_NAMESPACE }}/${{ env.PROJECT_NAME }}:${{ env.TAGNAME }} \
--push .
if [[ "${GITHUB_REF}" == refs/heads/testing ]]; then
docker buildx build \
--platform linux/amd64,linux/arm64 \
-t ${{ vars.DOCKER_NAMESPACE }}/${{ env.PROJECT_NAME }}:staging \
--push .
else
docker buildx build \
--platform linux/amd64,linux/arm64 \
-t ${{ vars.DOCKER_NAMESPACE }}/${{ env.PROJECT_NAME }}:${{ env.DOCKER_TAG }} \
-t ${{ vars.DOCKER_NAMESPACE }}/${{ env.PROJECT_NAME }}:${{ env.TAGNAME }} \
--push .
fi
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [0.0.1-alpha.63](https://github.com/DIG-Network/dig-incentive-server/compare/v0.0.1-alpha.62...v0.0.1-alpha.63) (2024-10-26)

### [0.0.1-alpha.62](https://github.com/DIG-Network/dig-incentive-server/compare/v0.0.1-alpha.61...v0.0.1-alpha.62) (2024-10-10)

### [0.0.1-alpha.61](https://github.com/DIG-Network/dig-incentive-server/compare/v0.0.1-alpha.60...v0.0.1-alpha.61) (2024-10-08)
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dig-incentive-server",
"version": "0.0.1-alpha.62",
"version": "0.0.1-alpha.63",
"description": "",
"type": "commonjs",
"main": "./dist/index.js",
Expand All @@ -14,7 +14,8 @@
"start": "ts-node src/index.ts",
"server": "ts-node src/server.ts",
"test": "mocha -r ts-node/register tests.ts",
"prepare-release": "bash ./scripts/release.sh"
"prepare-release": "bash ./scripts/release.sh",
"docker:build:local": "docker build -t dig-content-server:local ."
},
"author": "",
"license": "ISC",
Expand Down

0 comments on commit 6937316

Please sign in to comment.