@codfish/actions-playground 0.0.0-PR-63--844cab2 → 0.0.0-PR-65--1f6da01
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -48,8 +48,16 @@ jobs:
|
|
|
48
48
|
- name: docker build
|
|
49
49
|
run: docker build -t codfish/actions-playground:latest .
|
|
50
50
|
|
|
51
|
+
- name: Upload Text file
|
|
52
|
+
if: github.ref == 'refs/heads/main'
|
|
53
|
+
uses: actions/upload-artifact@v4
|
|
54
|
+
with:
|
|
55
|
+
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
56
|
+
name: text-file-${{ github.ref_name }}
|
|
57
|
+
path: text.txt
|
|
58
|
+
|
|
51
59
|
- name: semantic-release
|
|
52
|
-
uses:
|
|
60
|
+
uses: rdash99/semantic-release-action-smaller@main
|
|
53
61
|
id: semantic
|
|
54
62
|
with:
|
|
55
63
|
additional-packages: |
|
|
@@ -50,6 +50,11 @@ jobs:
|
|
|
50
50
|
if: steps.npm-cache.outputs.cache-hit != 'true'
|
|
51
51
|
run: npm ci --prefer-offline --no-audit
|
|
52
52
|
|
|
53
|
+
- name: Retrieve text file
|
|
54
|
+
uses: actions/download-artifact@v4
|
|
55
|
+
with:
|
|
56
|
+
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
57
|
+
|
|
53
58
|
- run:
|
|
54
59
|
npm run lint:commit -- --from="origin/${{ github.base_ref }}"
|
|
55
60
|
--to="origin/${{github.head_ref }}"
|
package/package.json
CHANGED