Compare commits
1 Commits
v0.0.1-dev
...
v0.0.1-dev
| Author | SHA1 | Date | |
|---|---|---|---|
| 7b1e102462 |
@@ -46,7 +46,7 @@ runs:
|
||||
steps:
|
||||
- name: add artefact
|
||||
run: |
|
||||
nix run . -- \
|
||||
nix run ${{ github.action_path }} -- \
|
||||
add-artefact \
|
||||
--state "${RELEASE_ACTION_STATEFILE}" \
|
||||
--artefact-type "${{ inputs.type }}" \
|
||||
|
||||
@@ -38,7 +38,7 @@ runs:
|
||||
steps:
|
||||
- name: add deployment
|
||||
run: |
|
||||
nix run . -- \
|
||||
nix run ${{ github.action_path }} -- \
|
||||
add-deployment \
|
||||
--state "${RELEASE_ACTION_STATEFILE}" \
|
||||
--deployment-type "${{ inputs.type }}" \
|
||||
|
||||
@@ -118,7 +118,7 @@ runs:
|
||||
IS_PRE_RELEASE="1"
|
||||
fi
|
||||
|
||||
nix run . -- \
|
||||
nix run ${{ github.action_path }} -- \
|
||||
declare \
|
||||
--state "${RELEASE_ACTION_STATEFILE}" \
|
||||
--release-yaml-filename "${{ inputs.filename }}" \
|
||||
@@ -129,7 +129,7 @@ runs:
|
||||
--release-commit-sha "${{ github.sha }}" \
|
||||
--is-pre-release "${IS_PRE_RELEASE}"
|
||||
|
||||
nix run . -- \
|
||||
nix run ${{ github.action_path }} -- \
|
||||
dump \
|
||||
--state "${RELEASE_ACTION_STATEFILE}" \
|
||||
--write-env-vars-to-filename "$GITHUB_ENV"
|
||||
@@ -143,7 +143,7 @@ runs:
|
||||
IS_PRE_RELEASE="1"
|
||||
fi
|
||||
|
||||
nix run . -- \
|
||||
nix run ${{ github.action_path }} -- \
|
||||
declare \
|
||||
--state "${RELEASE_ACTION_STATEFILE}" \
|
||||
--version-descriptor "${{ inputs.version_descriptor }}" \
|
||||
@@ -155,7 +155,7 @@ runs:
|
||||
--is-pre-release "${IS_PRE_RELEASE}" \
|
||||
|
||||
if [[ ! -z "${{ inputs.artefact_type }}" ]]; then
|
||||
nix run . -- \
|
||||
nix run ${{ github.action_path }} -- \
|
||||
add-artefact \
|
||||
--state "${RELEASE_ACTION_STATEFILE}" \
|
||||
--artefact-type "${{ inputs.artefact_type }}" \
|
||||
@@ -169,7 +169,7 @@ runs:
|
||||
fi
|
||||
|
||||
if [[ ! -z "${{ inputs.deployment_type }}" ]]; then
|
||||
nix run . -- \
|
||||
nix run ${{ github.action_path }} -- \
|
||||
add-deployment \
|
||||
--state "${RELEASE_ACTION_STATEFILE}" \
|
||||
--deployment-type "${{ inputs.deployment_type }}" \
|
||||
@@ -180,7 +180,7 @@ runs:
|
||||
--deployment-repository "${{ inputs.deployment_repository }}"
|
||||
fi
|
||||
|
||||
nix run . -- \
|
||||
nix run ${{ github.action_path }} -- \
|
||||
dump \
|
||||
--state "${RELEASE_ACTION_STATEFILE}" \
|
||||
--write-env-vars-to-filename "$GITHUB_ENV"
|
||||
|
||||
@@ -6,6 +6,6 @@ runs:
|
||||
steps:
|
||||
- name: dump project description
|
||||
run: |
|
||||
nix run . -- \
|
||||
nix run ${{ github.action_path }} -- \
|
||||
dump \
|
||||
--state "${RELEASE_ACTION_STATEFILE}"
|
||||
|
||||
@@ -12,21 +12,21 @@ runs:
|
||||
steps:
|
||||
- name: publish artefacts
|
||||
run: |
|
||||
nix run . -- \
|
||||
nix run ${{ github.action_path }} -- \
|
||||
publish-artefacts \
|
||||
--state "${RELEASE_ACTION_STATEFILE}" \
|
||||
--dry-run "${{ inputs.dry_run }}"
|
||||
|
||||
- name: update deployments
|
||||
run: |
|
||||
nix run . -- \
|
||||
nix run ${{ github.action_path }} -- \
|
||||
update-deployments \
|
||||
--state "${RELEASE_ACTION_STATEFILE}" \
|
||||
--dry-run "${{ inputs.dry_run }}"
|
||||
|
||||
- name: create release
|
||||
run: |
|
||||
nix run . -- \
|
||||
nix run ${{ github.action_path }} -- \
|
||||
create-release \
|
||||
--state "${RELEASE_ACTION_STATEFILE}" \
|
||||
--dry-run "${{ inputs.dry_run }}"
|
||||
|
||||
Reference in New Issue
Block a user