Skip to content

Commit

Permalink
Merge pull request #2 from neonlabsorg/NDEV-2606-add-more-solana-prog…
Browse files Browse the repository at this point in the history
…rams

Ndev 2606 add more solana programs
  • Loading branch information
kristinaNikolaevaa authored Feb 16, 2024
2 parents 76d38cd + ca695cd commit 7e8101d
Show file tree
Hide file tree
Showing 60 changed files with 11,974 additions and 4,614 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,15 @@ jobs:

steps:
- uses: actions/checkout@v3

- name: Define image tag
id: define-tag
run: |
if [[ "${{ github.ref_name }}" == "develop" ]]; then
tag='latest'
else
tag='${{ github.sha }}'
fi
echo "tag=${tag}" >> $GITHUB_OUTPUT
- name: Log in to Docker Hub
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
with:
Expand All @@ -26,5 +34,5 @@ jobs:
with:
context: .
push: true
tags: neonlabsorg/neon_test_invoke_program:${{ github.ref_name }}
labels: neonlabsorg/neon_test_invoke_program:${{ github.ref_name }}
tags: neonlabsorg/neon_test_programs:${{ steps.define-tag.outputs.tag }}
labels: neonlabsorg/neon_test_programs:${{ steps.define-tag.outputs.tag }}
Loading

0 comments on commit 7e8101d

Please sign in to comment.