This repository has been archived by the owner on Jan 13, 2025. It is now read-only.
chore: add namechange for job and fix permissions #10
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
# SPDX-FileCopyrightText: 2024 Digg - The Agency for Digital Government | |
# | |
# SPDX-License-Identifier: CC0-1.0 | |
name: eudiw-wallet-metadata-lib-poc workflow | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- "v[0-9]+.[0-9]+.[0-9]+" | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
permissions: | |
contents: read | |
uses: ./.github/workflows/test.yml | |
publish-to-github-packages: | |
if: startsWith(github.ref, 'refs/tags/v') | |
permissions: | |
contents: read | |
packages: write | |
needs: [test] | |
uses: ./.github/workflows/publish-to-github-packages.yml |