This repository has been archived by the owner on Aug 21, 2024. It is now read-only.
v1.6.0 #196
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: publish-gh-container | |
on: | |
release: | |
types: [] | |
jobs: | |
secrets-gate: | |
runs-on: ubuntu-latest | |
outputs: | |
ok: ${{ steps.check-secrets.outputs.ok }} | |
steps: | |
- name: check for secrets needed to run workflows | |
id: check-secrets | |
run: | | |
if [ ${{ secrets.PUBLISH_GH_CONTAINER_ENABLED }} == 'true' ]; then | |
echo "ok=enabled" >> $GITHUB_OUTPUT | |
fi | |
dev-deploy: | |
needs: | |
- secrets-gate | |
if: ${{ needs.secrets-gate.outputs.ok == 'enabled' }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
- name: Setup AWS | |
run: scripts/setup_aws.sh $EKS_AWS_ACCESS_KEY_ID $EKS_AWS_ACCESS_KEY_SECRET $AWS_REGION $CLUSTER_NAME | |
env: | |
EKS_AWS_ACCESS_KEY_ID: ${{ secrets.EKS_AWS_ACCESS_KEY_ID }} | |
EKS_AWS_ACCESS_KEY_SECRET: ${{ secrets.EKS_AWS_ACCESS_KEY_SECRET }} | |
AWS_REGION: ${{ secrets.AWS_REGION }} | |
CLUSTER_NAME: ${{ secrets.CLUSTER_NAME }} | |
- name: Build Docker Image | |
run: bash scripts/build_docker.sh dev $DOCKER_LABEL $PRIVATE_ECR $AWS_REGION | |
env: | |
DOCKER_LABEL: ${{ secrets.DOCKER_LABEL }} | |
REPO_NAME: ${{ secrets.DEV_REPO_NAME }} | |
AWS_REGION: ${{ secrets.AWS_REGION }} | |
ECR_URL: ${{ secrets.ECR_URL }} | |
- name: Publish to GitHub Container Packages | |
run: bash scripts/publish_gh_container.sh ${{ github.event.release.tag_name }} $DOCKER_LABEL | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GITHUB_USERNAME: ${{ github.repository_owner }} | |
DOCKER_LABEL: ${{ secrets.DOCKER_LABEL }} |