Compare commits

..

3 Commits

Author SHA1 Message Date
Lakhan Samani
36ea6a0a72 fix: image name 2021-09-11 22:46:42 +05:30
Lakhan Samani
f901b1fe4f feat: add docker build 2021-09-11 22:39:49 +05:30
Lakhan Samani
82991b9949 fix: mac build script 2021-09-11 22:32:18 +05:30
2 changed files with 20 additions and 10 deletions

View File

@@ -48,12 +48,22 @@ jobs:
run: |
github-assets-uploader -f authorizer-${VERSION}-windows-amd64.zip -mediatype application/zip -repo authorizerdev/authorizer -token ${{secrets.RELEASE_TOKEN}} -tag ${VERSION} && \
github-assets-uploader -f authorizer-${VERSION}-linux-amd64.tar.gz -mediatype application/gzip -repo authorizerdev/authorizer -token ${{secrets.RELEASE_TOKEN}} -tag ${VERSION}
- name: Log in to Docker Hub
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
# - uses: wangyoucao577/go-release-action@v1.20
# with:
# github_token: ${{ secrets.RELEASE_TOKEN }}
# goos: ${{ matrix.goos }}
# goarch: ${{ matrix.goarch }}
# build_command: make clean && make
# md5sum: FALSE
# extra_files: .env.sample app build template
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
with:
images: lakhansamani/authorizer
- name: Build and push Docker image
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

View File

@@ -1,7 +1,7 @@
VERSION="$1"
# make clean && CGO_ENABLED=1 make
make clean && CGO_ENABLED=1 make
FILE_NAME=authorizer-${VERSION}-darwin-amd64.tar.gz
# tar cvfz ${FILE_NAME} .env app build templates
tar cvfz ${FILE_NAME} .env app build templates
AUTH="Authorization: token $GITHUB_TOKEN"
RELASE_INFO=$(curl -sH "$AUTH" https://api.github.com/repos/authorizerdev/authorizer/releases/tags/${VERSION})
echo $RELASE_INFO