diff --git a/.env b/.env index 047204b..19de53c 100644 --- a/.env +++ b/.env @@ -1,2 +1,2 @@ REGISTRY_PREFIX=harbor.sheldan.dev/grafana-tools/ -VERSION=0.0.1 \ No newline at end of file +VERSION=0.0.2 \ No newline at end of file diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 48c9abe..743757a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -13,8 +13,11 @@ jobs: registry: harbor.sheldan.dev username: ${{ secrets.HARBOR_USERNAME }} password: ${{ secrets.HARBOR_TOKEN }} + - name: Load env files + id: dotenv + uses: falti/dotenv-action@v1.0.4 - name: Push container run: docker-compose build && docker-compose push env: - REGISTRY_PREFIX: harbor.sheldan.dev/grafana-tools/ - VERSION: ${{ env.version }} \ No newline at end of file + REGISTRY_PREFIX: ${{ steps.dotenv.outputs.registry_prefix }} + VERSION: ${{ steps.dotenv.outputs.version }} \ No newline at end of file