aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/s3-snapshots.yml
blob: ac585538c3eb67a25429941c95c969d10417adb1 (plain)
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
name: S3-snapshots

on: push

env:
  branch-name: ${GITHUB_REF#refs/heads/}
  bucket-name: 'dokka-snapshots'

jobs:
  coroutines:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout dokka
        uses: actions/checkout@v2
        with:
          path: dokka

      - uses: actions/setup-java@v1
        with:
          java-version: 11

      - name: Publish dokka locally
        run: ./gradlew clean publishToMavenLocal --stacktrace
        working-directory: ./dokka

      - name: Get current dokka version
        run: echo "::set-env name=DOKKA_VERSION::`./gradlew :properties | grep '^version:.*' | cut -d ' ' -f 2`"
        working-directory: ./dokka

      - name: Checkout coroutines
        uses: actions/checkout@v2
        with:
          repository: 'kamildoleglo/kotlinx.coroutines'
          ref: 'aws'
          path: coroutines

      - name: Document coroutines
        run: ./gradlew clean :dokkaCollector -Pdokka_version=$DOKKA_VERSION --stacktrace
        working-directory: ./coroutines

      - name: Configure AWS credentials for S3 access
        uses: aws-actions/configure-aws-credentials@v1
        with:
          aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
          aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
          aws-region: eu-central-1

      - name: Copy files to dokka's S3 bucket
        run: |
          aws s3 --recursive rm s3://${{ env.bucket-name }}/${{ env.branch-name }}/coroutines/prev
          aws s3 --recursive mv s3://${{ env.bucket-name }}/${{ env.branch-name }}/coroutines/latest s3://${{ env.bucket-name }}/${{ env.branch-name }}/coroutines/prev
          aws s3 sync ./coroutines/build/dokkaCollector s3://${{ env.bucket-name }}/${{ env.branch-name }}/coroutines/latest
      - name: Print link
        run: echo http://dokka-snapshots.s3.eu-central-1.amazonaws.com/${{ env.branch-name }}/coroutines/latest/kotlinx-coroutines-/index.html

  stdlib:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout dokka
        uses: actions/checkout@v2
        with:
          path: dokka

      - uses: actions/setup-java@v1
        with:
          java-version: 11

      - name: Publish dokka locally
        run: ./gradlew clean publishToMavenLocal --stacktrace
        working-directory: ./dokka

      - name: Get current dokka version
        run: echo "::set-env name=DOKKA_VERSION::`./gradlew :properties | grep '^version:.*' | cut -d ' ' -f 2`"
        working-directory: ./dokka

      - name: Checkout stdlib
        uses: actions/checkout@v2
        with:
          repository: 'kamildoleglo/kotlin-dokka-stdlib'
          ref: 'aws'
          path: stdlib

      - name: Document stdlib
        run: ./gradlew clean callDokka -Pdokka_version=$DOKKA_VERSION --stacktrace
        working-directory: ./stdlib

      - name: Configure AWS credentials for S3 access
        uses: aws-actions/configure-aws-credentials@v1
        with:
          aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
          aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
          aws-region: eu-central-1

      - name: Copy files to dokka's S3 bucket
        run: |
          aws s3 --recursive rm s3://${{ env.bucket-name }}/${{ env.branch-name }}/stdlib/prev
          aws s3 --recursive mv s3://${{ env.bucket-name }}/${{ env.branch-name }}/stdlib/latest s3://${{ env.bucket-name }}/${{ env.branch-name }}/stdlib/prev
          aws s3 sync ./stdlib/build/dokka s3://${{ env.bucket-name }}/${{ env.branch-name }}/stdlib/latest

      - name: Print link
        run: echo http://dokka-snapshots.s3.eu-central-1.amazonaws.com/${{ env.branch-name }}/stdlib/latest/kotlin-stdlib/kotlin-stdlib/index.html