forked from mastodon/mastodon
-
Notifications
You must be signed in to change notification settings - Fork 0
86 lines (70 loc) · 3.41 KB
/
staging.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
84
85
86
name: build staging image
on:
push:
branches:
- staging
concurrency:
group: build-${{ github.ref }}
jobs:
build_amd64:
runs-on: buildjet-8vcpu-ubuntu-2204
steps:
- uses: joelwmale/[email protected]
with:
url: https://mstdn.plusminus.io/api/v1/statuses
headers: '{"Authorization": "Bearer ${{ secrets.MASTODON_TOKEN }}"}'
body: '{"status": ":loading: 𝙗𝙪𝙞𝙡𝙙 𝙨𝙩𝙖𝙧𝙩\n\ndocker image: plusminusio/mastodon:staging\nworkflow: ${{ github.event.repository.url }}/actions/runs/${{ github.run_id }}"}'
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: docker/login-action@v2
with:
username: mohemohe
password: ${{ secrets.DOCKERHUB_TOKEN }}
- uses: docker/build-push-action@v4
with:
push: true
tags: plusminusio/mastodon:staging
- if: success()
uses: joelwmale/[email protected]
with:
url: https://mstdn.plusminus.io/api/v1/statuses
headers: '{"Authorization": "Bearer ${{ secrets.MASTODON_TOKEN }}"}'
body: '{"status": "☺️ 𝙗𝙪𝙞𝙡𝙙 𝙨𝙪𝙘𝙘𝙚𝙨𝙨\n\ndocker image: plusminusio/mastodon:staging\nworkflow: ${{ github.event.repository.url }}/actions/runs/${{ github.run_id }}"}'
- if: failure()
uses: joelwmale/[email protected]
with:
url: https://mstdn.plusminus.io/api/v1/statuses
headers: '{"Authorization": "Bearer ${{ secrets.MASTODON_TOKEN }}"}'
body: '{"status": "😩 𝙗𝙪𝙞𝙡𝙙 𝙛𝙖𝙞𝙡𝙪𝙧𝙚\n\ndocker image: plusminusio/mastodon:staging\nworkflow: ${{ github.event.repository.url }}/actions/runs/${{ github.run_id }}"}'
build_arm64:
runs-on: buildjet-8vcpu-ubuntu-2204-arm
steps:
- uses: joelwmale/[email protected]
with:
url: https://mstdn.plusminus.io/api/v1/statuses
headers: '{"Authorization": "Bearer ${{ secrets.MASTODON_TOKEN }}"}'
body: '{"status": ":loading: 𝙗𝙪𝙞𝙡𝙙 𝙨𝙩𝙖𝙧𝙩\n\ndocker image: plusminusio/mastodon:staging-arm64\nworkflow: ${{ github.event.repository.url }}/actions/runs/${{ github.run_id }}"}'
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: docker/login-action@v2
with:
username: mohemohe
password: ${{ secrets.DOCKERHUB_TOKEN }}
- uses: docker/build-push-action@v4
with:
push: true
tags: plusminusio/mastodon:staging-arm64
- if: success()
uses: joelwmale/[email protected]
with:
url: https://mstdn.plusminus.io/api/v1/statuses
headers: '{"Authorization": "Bearer ${{ secrets.MASTODON_TOKEN }}"}'
body: '{"status": "☺️ 𝙗𝙪𝙞𝙡𝙙 𝙨𝙪𝙘𝙘𝙚𝙨𝙨\n\ndocker image: plusminusio/mastodon:staging-arm64\nworkflow: ${{ github.event.repository.url }}/actions/runs/${{ github.run_id }}"}'
- if: failure()
uses: joelwmale/[email protected]
with:
url: https://mstdn.plusminus.io/api/v1/statuses
headers: '{"Authorization": "Bearer ${{ secrets.MASTODON_TOKEN }}"}'
body: '{"status": "😩 𝙗𝙪𝙞𝙡𝙙 𝙛𝙖𝙞𝙡𝙪𝙧𝙚\n\ndocker image: plusminusio/mastodon:staging-arm64\nworkflow: ${{ github.event.repository.url }}/actions/runs/${{ github.run_id }}"}'