generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 13
83 lines (70 loc) · 2.55 KB
/
publishing.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
name: Publishing the action to the marketplace
on:
push:
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
workflow_dispatch:
permissions:
contents: read
jobs:
test-local-action:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: ./
name: json to file
with:
json: '{"foo": "test"}'
filename: 'test.json'
id: store-json
- shell: pwsh
run: |
$content = Get-Content -Path 'test.json'
$test = $content | ConvertFrom-Json
if ($test.foo -eq 'test') {
Write-Host "File found correct"
}
else {
Write-Host "Found this json:"
Write-Host $test | ConvertTo-Json
}
- name: Upload result file as artefact
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v2.3.1
with:
name: test
path: test.json
publish:
needs: test-local-action
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Get tag value
id: tag
uses: devops-actions/action-get-tag@19f393df16cb09284484fb49bf678004bf50896a # v1.0.1
- name: Use tag
run: echo ${{ steps.tag.outputs.tag }}
- uses: actions/create-release@0cb9c9b65d5d1901c1f53e5e66eaf4afd303e70e # v1.1.4
id: create_release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
body: |
Release ${{ github.ref }} is available now
# todo: figure out how this works with an action :-)
#- uses: actions/publish-release-asset@v2
#with:
#upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
#asset_path: ./my-artifact.zip
#asset_name: my-artifact.zip
#asset_content_type: application/zip
- uses: rajbos-actions/slack@ed1309ab9862e57e9e583e51c7889486b9a00b0f # v2.0.0
with:
status: ${{ job.status }}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
if: always()