Skip to content

Commit

Permalink
💚 Add Check variables, Checkout and Build
Browse files Browse the repository at this point in the history
  • Loading branch information
KamyNz committed Jan 30, 2024
1 parent 6d7a885 commit c4055ee
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/ga-generate-package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ jobs:
Paackage-Artifact:
runs-on: ubuntu-latest

env:
CR_PAT: ${{ secrets.CR_PAT }}
GITHUB_REPOSITORY: ${{ github.repository }}

steps:
- name: Checking job variables
run: |
Expand All @@ -20,4 +24,11 @@ jobs:
- name: Check out repository code
uses: actions/[email protected]

- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
- name: Build
run: |
docker build -t ynab-app-artifact:latest app/
repository_lowercase=$(echo "${{ env.GITHUB_REPOSITORY }}" | tr '[:upper:]' '[:lower:]')
docker tag ynab-app-artifact:latest ghcr.io/$repository_lowercase/ynab-app-artifact:latest
# - name: Deploy
# run: |

0 comments on commit c4055ee

Please sign in to comment.