8000 fix: listing web's nginx conf · usekaneo/kaneo@9ae5b32 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Commit 9ae5b32

Browse files
committed
fix: listing web's nginx conf
1 parent fa736c5 commit 9ae5b32

File tree

1 file changed

+5
-44
lines changed

1 file changed

+5
-44
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
jobs:
99
build-and-push-docker:
1010
runs-on: ubuntu-latest
11+
1112
steps:
1213
- name: Checkout repository
1314
uses: actions/checkout@v3
@@ -22,6 +23,9 @@ jobs:
2223
- name: Set up Docker Buildx
2324
uses: docker/setup-buildx-action@v2
2425

26+
- name: List files in apps/web
27+
run: ls -l apps/web
28+
2529
- name: Build and push web Docker image
2630
uses: docker/build-push-action@v4
2731
with:
@@ -38,47 +42,4 @@ jobs:
3842
push: true
3943
tags: |
4044
ghcr.io/${{ github.repository_owner }}/api:latest
41-
ghcr.io/${{ github.repository_owner }}/api:${{ github.sha }}
42-
43-
generate-changelog:
44-
runs-on: ubuntu-latest
45-
steps:
46-
- name: Checkout repository
47-
uses: actions/checkout@v3
48-
with:
49-
fetch-depth: 0
50-
51-
- name: Generate changelog with conventional commits
52-
id: changelog
53-
uses: conventional-changelog/action@v3
54-
with:
55-
github-token: ${{ secrets.GITHUB_TOKEN }}
56-
preset: conventionalcommits
57-
output-file: CHANGELOG.md
58-
59-
- name: Commit changelog
60-
run: |
61-
git config --global user.name "GitHub Actions"
62-
git config --global user.email "actions@github.com"
63-
git add CHANGELOG.md
64-
git commit -m "chore: Update changelog"
65-
git push
66-
67-
create-release:
68-
runs-on: ubuntu-latest
69-
needs: [build-and-push-docker, generate-changelog]
70-
steps:
71-
- name: Checkout repository
72-
uses: actions/checkout@v3
73-
74-
- name: Create GitHub release
75-
id: create-release
76-
uses: actions/create-release@v1
77-
with:
78-
tag_name: v1.0.0-${{ github.sha }}
79-
release_name: Release v1.0.0-${{ github.sha }}
80-
body: ${{ steps.changelog.outputs.changelog }}
81-
draft: false
82-
prerelease: false
83-
env:
84-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
45+
ghcr.io/${{ github.repository_owner }}/api:${{ github.sha }}

0 commit comments

Comments
 (0)
0